Fetch Invoice
This API returns the details of a specific invoice.
Authentication Route
This route is secured with processor and vendor token authentication.
Endpoint
/3p/api/v1/users/{user_uuid}/invoices/{invoice_uuid}
Response Object
{
"status": true,
"message": "",
"data": {
"uuid": "d5059656-7032-412d-849a-e2dfb79b8be6",
"external_id": "19c64a3d-71cb-4400-8225-iuqwyeuibg",
"due_date": "2024-04-28",
"invoice_date": "2024-04-12",
"payment_date": "2024-04-26",
"amount": 10000,
"description": "Services provided in April",
"approved_by_payer": true,
"payer_external_id": "invoice_user_25478",
"payee_external_id": "invoice_user_32579",
"payee_uuid": "cc8859fd-ad44-4fd8-bfc4-23925b04ba9d",
"created_at": "2024-05-26 10:15:15"
},
"errors": null,
"error_code": null
}
Updated 5 months ago