Get Client Invoice Metrics
GET /tms/client-invoice/metrics
Description
This endpoint retrieves the metrics for client invoices. It provides information on the status of client invoices, including whether they were successfully retrieved or if there were errors.
Parameters
- tenantId (
string, header, required): The ID of the tenant. - countryCode (
string, header, required): The country code for the invoice metrics.
Responses
-
200 OK
-
Media type: Controls Accept header.
-
Example Value:
{
"status": true,
"statusCode": 0,
"message": "string",
"data": {},
"errors": [
{
"message": "string",
"descriptiveMessage": "string"
}
]
}
-
-
400 Bad Request
- Description: The request was invalid or cannot be processed. This can occur due to missing or incorrect parameters.
-
404 Not Found
- Description: The requested invoice was not found.
LANGUAGE
CURL REQUEST
curl --request GET \
--url /tms/client-invoice/metrics \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!