Skip to main content
DELETE
/
api
/
invoices
/
{invoice_uid}
Delete invoice
curl --request DELETE \
  --url https://dev.exante.app/api/invoices/{invoice_uid} \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "status_code": 200,
  "message": "Success",
  "data": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

invoice_uid
string<uuid>
required

Invoice UID

Response

Invoice deleted

status
string
Example:

"success"

status_code
integer
Example:

200

message
string
Example:

"Success"

data
object

Optional payload included by endpoints that use the standard success wrapper.