DELETE Orders/RemovePayment
Removes an existing Payment.
Request Information
URI Parameters
None.
Body Parameters
PaymentBinding| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| MeansID |
Means used to receive this payment |
integer |
None. |
| Date | date |
None. |
|
| Amount |
The amount received with this payment |
decimal number |
None. |
| TransactionId |
The id of the payment transaction as issued by a payment processor |
string |
None. |
| Observations | string |
None. |
|
| OrderID | integer |
None. |
|
| Lang | string |
None. |
|
| StoreID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"MeansID": 2,
"Date": "2025-12-06T05:42:08.808008+01:00",
"Amount": 4.0,
"TransactionId": "sample string 5",
"Observations": "sample string 6",
"OrderID": 7,
"Lang": "sample string 8",
"StoreID": 9
}
application/xml, text/xml
Sample:
<PaymentBinding xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Binding.Order"> <Lang xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">sample string 8</Lang> <StoreID xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">9</StoreID> <OrderID xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Order">7</OrderID> <Amount>4</Amount> <Date>2025-12-06T05:42:08.808008+01:00</Date> <ID>1</ID> <MeansID>2</MeansID> <Observations>sample string 6</Observations> <TransactionId>sample string 5</TransactionId> </PaymentBinding>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.