GET api/Inventory/getAllRecords/Category/{sSearch}/{startindex}/{limit}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| sSearch | string |
Required |
|
| startindex | integer |
Required |
|
| limit | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of InventoryCategoryDto| Name | Description | Type | Additional information |
|---|---|---|---|
| InventoryCategoryId | decimal number |
None. |
|
| InventoryCategoryName | string |
None. |
|
| TotalRecords | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"InventoryCategoryId": 1.0,
"InventoryCategoryName": "sample string 2",
"TotalRecords": 1
},
{
"InventoryCategoryId": 1.0,
"InventoryCategoryName": "sample string 2",
"TotalRecords": 1
}
]
application/xml, text/xml
Sample:
<ArrayOfInventoryCategoryDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZenoxGenius.API.Models.Extensions">
<InventoryCategoryDto>
<InventoryCategoryId>1</InventoryCategoryId>
<InventoryCategoryName>sample string 2</InventoryCategoryName>
<TotalRecords>1</TotalRecords>
</InventoryCategoryDto>
<InventoryCategoryDto>
<InventoryCategoryId>1</InventoryCategoryId>
<InventoryCategoryName>sample string 2</InventoryCategoryName>
<TotalRecords>1</TotalRecords>
</InventoryCategoryDto>
</ArrayOfInventoryCategoryDto>