v1
latestOpenAPI 3.0.02026-07-1412068.2 KBInvoices
Create Invoice
API to create and send an invoice to a customer via email.
post/invoices
Headers
Content-Typestring
Authorizationstring
Request body
Example request
{
"amount": 123,
"amount_currency": "AED",
"email": "customer@example.com",
"description": "Invoice for consulting services",
"customer_type": "individual",
"first_name": "John",
"last_name": "Doe",
"phone_number": "+971555512345",
"vat_enabled": false,
"additional_heading": "Payment Terms",
"additional_details": "Please complete payment within 7 days.",
"additional_cc_emails": [],
"include_external_id": true,
"external_id": "ORDER-98765",
"processing_fee_percentage": null,
"processing_fee_amount": null
}Response
Successful response
Example response
{
"id": "INV-A3B02CC00F",
"status": "outstanding",
"amount": 123,
"amount_formatted": "AED 123.00",
"amount_currency": "AED",
"description": "Invoice for consulting services",
"customer": {
"name": "John Doe",
"email": "customer@example.com",
"phone": "+971555512345"
},
"external_id": "ORDER-98765",
"additional_heading": "Payment Terms",
"additional_details": "Please complete payment within 7 days.",
"business_name": null,
"uae_tax_reference_number": null,
"address": null,
"city": null,
"country": null,
"payment_url": "https://sandbox.dev.business.mamopay.com/pay/mamo-6112becefca9",
"invoice_pdf_url": null,
"paid_at": null,
"created_at": "16 Apr, 2026"
}