DELETE api/Invoice
Request Information
URI Parameters
None.
Body Parameters
CancellationRequestName | Description | Type | Additional information |
---|---|---|---|
InvoiceType | CancellationType |
Required |
|
InvoiceId | globally unique identifier |
Required |
|
CancellationId | globally unique identifier |
Required |
|
Reason | CancellationReason |
None. |
Request Formats
application/json, text/json
Sample:
{ "InvoiceType": 0, "InvoiceId": "de3b8078-ba30-4b93-ae75-a88c47b474d4", "CancellationId": "21e2f91e-969a-4d03-9119-21d90ad2a94a", "Reason": 0 }
application/xml, text/xml
Sample:
<CancellationRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Protech.UX.API.Invoice"> <CancellationId>21e2f91e-969a-4d03-9119-21d90ad2a94a</CancellationId> <InvoiceId>de3b8078-ba30-4b93-ae75-a88c47b474d4</InvoiceId> <InvoiceType>invoicedetail</InvoiceType> <Reason>eventcancelled</Reason> </CancellationRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResponseName | Description | Type | Additional information |
---|---|---|---|
Status | Status |
None. |
|
Id | globally unique identifier |
None. |
|
Description | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "Status": 0, "Id": "d31b6f19-c12a-4b5e-9421-50775b57578e", "Description": "sample string 2" }
application/xml, text/xml
Sample:
<APIResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Protech.UX.API.Response"> <Description>sample string 2</Description> <Id>d31b6f19-c12a-4b5e-9421-50775b57578e</Id> <Status>Success</Status> </APIResponse>