POST Channel/Search
get list of channel base on search criteria and Pagination.
Request Information
URI Parameters
None.
Body Parameters
ParamPaginationName | Description | Type | Additional information |
---|---|---|---|
Search | string |
None. |
|
TotalRowPerPage | integer |
None. |
|
Page | integer |
None. |
|
OrderByColumnName | string |
None. |
|
OrderByDirection | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "Search": "sample string 1", "TotalRowPerPage": 1, "Page": 1, "OrderByColumnName": "sample string 2", "OrderByDirection": "sample string 3" }
Response Information
Resource Description
ResultPaginationModelOfListOfChannelModelName | Description | Type | Additional information |
---|---|---|---|
TotalRow | integer |
None. |
|
StatusCode | string |
None. |
|
StatusMessage | string |
None. |
|
Value | Collection of ChannelModel |
None. |
Response Formats
application/json, text/json
Sample:
{ "TotalRow": 1, "StatusCode": "sample string 2", "StatusMessage": "sample string 3", "Value": [ { "ID": 1, "Code": "sample string 2", "Name": "sample string 3", "IsActive": true }, { "ID": 1, "Code": "sample string 2", "Name": "sample string 3", "IsActive": true } ] }