POST api/payment-status/GetAllPaymentStatusWithFilter
Request Information
URI Parameters
None.
Body Parameters
FilterRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Filters | Dictionary of string [key] and Object [value] |
None. |
|
| PageNumber | integer |
None. |
|
| PageSize | integer |
None. |
|
| SortField | string |
None. |
|
| SortDirection | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Filters": {
"sample string 1": {},
"sample string 3": {}
},
"PageNumber": 1,
"PageSize": 2,
"SortField": "sample string 3",
"SortDirection": "sample string 4"
}
application/xml, text/xml
Sample:
<FilterRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/cbox.Models">
<PageNumber>1</PageNumber>
<PageSize>2</PageSize>
<SortDirection>sample string 4</SortDirection>
<SortField>sample string 3</SortField>
<Filters xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:KeyValueOfstringanyType>
<d2p1:Key>sample string 1</d2p1:Key>
<d2p1:Value />
</d2p1:KeyValueOfstringanyType>
<d2p1:KeyValueOfstringanyType>
<d2p1:Key>sample string 3</d2p1:Key>
<d2p1:Value />
</d2p1:KeyValueOfstringanyType>
</Filters>
</FilterRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseModelOfListOfPaymentStatusDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| data | Collection of PaymentStatusDTO |
None. |
|
| success | boolean |
None. |
|
| statusCode | integer |
None. |
|
| message | string |
None. |
|
| errorMessage | string |
None. |
|
| metadata | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"data": [
{
"id": 1,
"name": "sample string 2",
"statuscode": "sample string 3"
},
{
"id": 1,
"name": "sample string 2",
"statuscode": "sample string 3"
}
],
"success": true,
"statusCode": 2,
"message": "sample string 3",
"errorMessage": "sample string 4",
"metadata": {}
}
application/xml, text/xml
Sample:
<ResponseModelOfArrayOfPaymentStatusDTOqOm1f5oC xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/cbox.Models.Response">
<ErrorMessage>sample string 4</ErrorMessage>
<Message>sample string 3</Message>
<Metadata />
<StatusCode>2</StatusCode>
<Success>true</Success>
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/cbox.Models.DTOs">
<d2p1:PaymentStatusDTO>
<d2p1:ID>1</d2p1:ID>
<d2p1:Name>sample string 2</d2p1:Name>
<d2p1:StatusCode>sample string 3</d2p1:StatusCode>
</d2p1:PaymentStatusDTO>
<d2p1:PaymentStatusDTO>
<d2p1:ID>1</d2p1:ID>
<d2p1:Name>sample string 2</d2p1:Name>
<d2p1:StatusCode>sample string 3</d2p1:StatusCode>
</d2p1:PaymentStatusDTO>
</Data>
</ResponseModelOfArrayOfPaymentStatusDTOqOm1f5oC>