Required permission: | StockAdjustmentType-Setup.GET |
GET | /StockAdjustmentTypes | ||
---|---|---|---|
GET | /StockAdjustmentTypes/page/{Page} | Get records by given a page number | Each page consists of 20 records |
GET | /StockAdjustmentTypes/AcStockAdjustmentTypeID/{AcStockAdjustmentTypeID} | 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. |
AcStockAdjustmentTypeID | path | string | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
StockAdjustmentTypes | form | List<AcStockAdjustmentType> | 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 |
---|---|---|---|---|
AcStockAdjustmentTypeID | form | NVARCHAR(20) | Yes | Stock Adjustment Type ID |
AcStockAdjustmentTypeDesc | form | NVARCHAR(100) | Yes | Description |
PlusMinus | form | NVARCHAR(1) | Yes | Adjustment Type (+ or -) |
AdjustmentFactor | form | INT | Yes | Adjustment Factor (1 or -1) |
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /StockAdjustmentTypes HTTP/1.1 Host: snr2u.com Accept: text/jsv
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { StockAdjustmentTypes: [ { AcStockAdjustmentTypeID: String, AcStockAdjustmentTypeDesc: String, PlusMinus: String, AdjustmentFactor: 0 } ], ResponseStatus: { ErrorCode: String, Message: String, StackTrace: String, Errors: [ { ErrorCode: String, FieldName: String, Message: String, Meta: { String: String } } ], Meta: { String: String } }, TotalRecords: 0, TotalRecordsInPage: 0 }