POST api/getmerchantslist
Request Information
URI Parameters
None.
Body Parameters
RequestParamMerchant| Name | Description | Type | Additional information |
|---|---|---|---|
| filter | string |
None. |
|
| startpage | integer |
None. |
|
| pagesize | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"filter": "sample string 1",
"startpage": 2,
"pagesize": 3
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
MerchantResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| lstmerchant | Collection of MerchantModel |
None. |
|
| totalItems | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"lstmerchant": [
{
"$id": "2",
"MerchantName": "sample string 1",
"City": "sample string 2",
"CountryId": 1,
"UserName": "sample string 3",
"CountryName": "sample string 4",
"MerchantId": 1,
"MerchantContactPhoneNo": "sample string 5",
"RowNumber": 6
},
{
"$ref": "2"
}
],
"totalItems": 1
}