POST Finance/PaymentMeansCustomerExclusions
Request Information
URI Parameters
None.
Body Parameters
PaymentMeansCustomerExclusionRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerID | string |
None. |
|
| PaymentMeansID | integer |
None. |
|
| Lang | string |
None. |
|
| StoreID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerID": "sample string 1",
"PaymentMeansID": 1,
"Lang": "sample string 2",
"StoreID": 3
}
application/xml, text/xml
Sample:
<PaymentMeansCustomerExclusionRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Finance"> <Lang xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">sample string 2</Lang> <StoreID xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">3</StoreID> <CustomerID>sample string 1</CustomerID> <PaymentMeansID>1</PaymentMeansID> </PaymentMeansCustomerExclusionRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
PaymentMeansCustomerExclusionsView| Name | Description | Type | Additional information |
|---|---|---|---|
| TotalCount | integer |
None. |
|
| PaymentMeansCustomerExclusions | Collection of PaymentMeansCustomerExclusion |
None. |
Response Formats
application/json, text/json
Sample:
{
"TotalCount": 1,
"PaymentMeansCustomerExclusions": [
{
"CustomerID": "sample string 1",
"PaymentMeansID": 2,
"Created": "2025-12-06T05:41:49.700424+01:00",
"Observations": "sample string 4"
},
{
"CustomerID": "sample string 1",
"PaymentMeansID": 2,
"Created": "2025-12-06T05:41:49.700424+01:00",
"Observations": "sample string 4"
}
]
}
application/xml, text/xml
Sample:
<PaymentMeansCustomerExclusionsView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Finance">
<PaymentMeansCustomerExclusions>
<PaymentMeansCustomerExclusion>
<Created>2025-12-06T05:41:49.700424+01:00</Created>
<CustomerID>sample string 1</CustomerID>
<Observations>sample string 4</Observations>
<PaymentMeansID>2</PaymentMeansID>
</PaymentMeansCustomerExclusion>
<PaymentMeansCustomerExclusion>
<Created>2025-12-06T05:41:49.700424+01:00</Created>
<CustomerID>sample string 1</CustomerID>
<Observations>sample string 4</Observations>
<PaymentMeansID>2</PaymentMeansID>
</PaymentMeansCustomerExclusion>
</PaymentMeansCustomerExclusions>
<TotalCount>1</TotalCount>
</PaymentMeansCustomerExclusionsView>