POST api/v1/customerpaymentmethods/search
Request Information
URI Parameters
None.
Body Parameters
CustomerGenericSearch| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| CustomerId | integer |
None. |
|
| PaymentMethodTypeId | integer |
None. |
|
| DocumentTypeId | integer |
None. |
|
| ShowCustomer | boolean |
None. |
|
| Search | string |
None. |
|
| Skip | integer |
None. |
|
| Take | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"CustomerId": 2,
"PaymentMethodTypeId": 3,
"DocumentTypeId": 4,
"ShowCustomer": true,
"Search": "sample string 6",
"Skip": 7,
"Take": 8
}
application/xml, text/xml
Sample:
<CustomerGenericSearch xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MWS.Core.Models.Customers.Search"> <CustomerId>2</CustomerId> <DocumentTypeId>4</DocumentTypeId> <Id>1</Id> <PaymentMethodTypeId>3</PaymentMethodTypeId> <Search>sample string 6</Search> <ShowCustomer>true</ShowCustomer> <Skip>7</Skip> <Take>8</Take> </CustomerGenericSearch>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseModelOfListOfCustomerPaymentMethod| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Data | Collection of CustomerPaymentMethod |
None. |
|
| Pagination | Pagination |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.