Post https://app.moneygraph.ai/api/v1/invoice/recipient/create
Authorization* string
Pass your {api_key} as a bearer token in the request header to authorize this call
entity_type*string
The entity's type. Must be one of individual or company.
country* string
Country must be in ISO2 format e.g US, NG
first_name*string
The entity's first name.
last_name*string
The entity's last name.
email*string
The entity's email address.
phone*string
Phone number of the entity
state*string
State iso2
city*string
City
address*string
The entity's address
postal_code*string
The entity's Postal/Zip Code
company_namestring
The invoice recipient's company name. This is required if entity type is company
{
"message": "Invoice recipient created",
"status": "success",
"data": {
"id": "705c5559-562f-4b8c-b24e-8705912c54fc",
"first_name": "Jon",
"last_name": "Doe",
"email": "[email protected]",
"phone": "+2349051194087",
"created_at": "2025-10-02T09:04:36.000000Z",
"last_updated_at": "2025-10-02T09:04:36.000000Z",
"entity_type": "company",
"company_name": "ABC Corporations",
"mode": "test"
}
}