GET api/StorageCards?changeDate={changeDate}&customerNo={customerNo}&includeInactive={includeInactive}
Get storage cards in paged format
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| changeDate |
Optional, default = null |
date |
Default value is Null |
| customerNo |
Optional, default = null |
integer |
Default value is Null |
| includeInactive |
Optional, default = false |
boolean |
Default value is False |
Body Parameters
None.
Remarks
None.
Example
//Gets all storage cards in the fifth page not including closed storage cards.
http://localhost/api/storageCards?pageNumber=5&pageSize=25
//Gets all storage cards, including closed storage cards, in the fifth page with default page size of 25.
http://localhost/api/storageCards?includeInactive=true&pageNumber=5
//Gets storage cards associated to customer 52, including closed storage cards, in the fifth page with default page size of 25.
http://localhost/api/storageCards?customerNo=52&includeInactive=true&pageNumber=5
//Gets storage cards changed after 2021-11-15, including closed storage cards, in the fifth page with default page size of 25.
http://localhost/api/storageCards?changeDate=2021-11-15&includeInactive=true&pageNumber=5
Response Information
Resource Description
PagedStorageInfoDataLite| Name | Description | Type | Additional information |
|---|---|---|---|
| StorageCards | Collection of StorageCardLiteResponse |
None. |
|
| TotalPages |
Total number of pages. |
integer |
None. |
| NextPage |
Link to the next page. |
string |
None. |
| PreviousPage |
Link to the previous page. |
string |
None. |
| LastPage |
Link to the last page. |
string |
None. |
| FirstPage |
Link to the first page. |
string |
None. |
Response Formats
application/json, text/json
Sample not available.