POST ProductBefore/Search
get list of stages base on search criteria and Pagination.
Request Information
URI Parameters
None.
Body Parameters
ParamPaginationWithClientName | Description | Type | Additional information |
---|---|---|---|
ClientID | string |
None. |
|
ClientSecret | string |
None. |
|
IsPregnancyProduct | boolean |
None. |
|
Search | string |
None. |
|
TotalRowPerPage | integer |
None. |
|
Page | integer |
None. |
|
OrderByColumnName | string |
None. |
|
OrderByDirection | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "ClientID": "sample string 1", "ClientSecret": "sample string 2", "IsPregnancyProduct": true, "Search": "sample string 3", "TotalRowPerPage": 1, "Page": 1, "OrderByColumnName": "sample string 4", "OrderByDirection": "sample string 5" }
Response Information
Resource Description
ResultPaginationModelOfListOfProductBeforeModelName | Description | Type | Additional information |
---|---|---|---|
TotalRow | integer |
None. |
|
StatusCode | string |
None. |
|
StatusMessage | string |
None. |
|
Value | Collection of ProductBeforeModel |
None. |
Response Formats
application/json, text/json
Sample:
{ "TotalRow": 1, "StatusCode": "sample string 2", "StatusMessage": "sample string 3", "Value": [ { "ID": 1, "Name": "sample string 2", "IsDeleted": true, "IsPregnancyProduct": true }, { "ID": 1, "Name": "sample string 2", "IsDeleted": true, "IsPregnancyProduct": true } ] }