Required permission: | StockReceiveType-Setup.GET |
GET | /StockReceiveTypes | ||
---|---|---|---|
GET | /StockReceiveTypes/page/{Page} | Get records by given a page number | Each page consists of 20 records |
GET | /StockReceiveTypes/AcStockReceiveTypeID/{AcStockReceiveTypeID} | Get records for given ID |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Page | path | int? | No | Page Number. Default 1. |
RecordsPerPage | query | int? | No | Records Per Page. Default 20 Records. |
AcStockReceiveTypeID | path | string | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
StockReceiveTypes | form | List<AcStockReceiveType> | No | |
ResponseStatus | form | ResponseStatus | No | |
TotalRecords | form | int | No | Total records in all pages. |
TotalRecordsInPage | form | int | No | Total records in current page. |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
AcStockReceiveTypeID | form | NVARCHAR(20) | Yes | Stock Receive Type ID |
AcStockReceiveTypeDesc | form | NVARCHAR(100) | Yes | Description |
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /StockReceiveTypes HTTP/1.1 Host: snr2u.com Accept: application/json
HTTP/1.1 200 OK Content-Type: application/json Content-Length: length {"StockReceiveTypes":[{"AcStockReceiveTypeID":"String","AcStockReceiveTypeDesc":"String"}],"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}},"TotalRecords":0,"TotalRecordsInPage":0}