POST api/location_master/list
Request Information
URI Parameters
None.
Body Parameters
PaginationFilterModel| Name | Description | Type | Additional information |
|---|---|---|---|
| page | integer |
None. |
|
| top | integer |
None. |
|
| query | string |
None. |
|
| is_active | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"page": 1,
"top": 2,
"query": "sample string 3",
"is_active": true
}
text/html
Sample:
{"page":1,"top":2,"query":"sample string 3","is_active":true}
application/xml, text/xml
Sample:
<PaginationFilterModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LSAtlas_WebAPI.Models"> <is_active>true</is_active> <page>1</page> <query>sample string 3</query> <top>2</top> </PaginationFilterModel>
multipart/form-data
Sample:
<PaginationFilterModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LSAtlas_WebAPI.Models"><is_active>true</is_active><page>1</page><query>sample string 3</query><top>2</top></PaginationFilterModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |