cURL
curl --request DELETE \ --url https://dev.exante.app/api/invoices \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' [ "3c90c3cc-0d44-4b50-8888-8dd25736052a" ] '
{ "status": "success", "status_code": 200, "message": "Success", "data": {} }
Deletes up to 100 invoices in one request. The body is a raw array of invoice UIDs.
[ "550e8400-e29b-41d4-a716-446655440000", "550e8400-e29b-41d4-a716-446655440001" ]
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
1 - 100
Invoices deleted
"success"
200
"Success"
Optional payload included by endpoints that use the standard success wrapper.