Check Invoice Status
Access Endpoint URL: https://rest.everyware.com/api/Default/CheckInvoiceStatus [POST]
You can use the CheckInvoiceStatus method to determine whether an invoice that was sent to a customer is still "Active" or "Inactive".
Inbound Parameters
Parameters should be passed in a single JSON-body object.
| Parameter Name | Description | Optional/Required |
|---|---|---|
| InvoiceID | The ID associated with the invoice in the Everyware system. | *Required |
Sample Code
{
"InvoiceID": "938273"
}
curl --location 'https://rest.everyware.com/api/Default/CheckInvoiceStatus' \
--header 'Authorization: Basic [xxx]' \
--header 'Content-Type: application/json' \
--data-raw '{
"InvoiceID": "938273"
}'
{
"OrderNumber": null,
"SMSID": null,
"IsSuccess": true,
"Message": "Cancelled",
"Data": null
}