Skip to main content

Delete Client Invoice

PUT /tms/client-invoice

Description

This endpoint is used to delete a client invoice. The request requires tenant ID and country code in the headers, and the UUID of the invoice in the query parameters.

Parameters

  • tenantId (string, header, required): The tenant ID.
  • countryCode (string, header, required): The country code.
  • uuid (string, query, required): The UUID of the client invoice.

Responses

200 OK

  • Description: Client invoice cancelled
  • Media Type: Controls Accept header.
  • Example Value:
{
"status": true,
"statusCode": 0,
"message": "string",
"data": {},
"errors": [
{
"message": "string",
"descriptiveMessage": "string"
}
]
}

400 Bad Request

Description: Invalid reference supplied

404 Not Found

Description: Client invoice not found

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request PUT \ 
--url /tms/client-invoice \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


Click Try It! to start a request and see the response here!