GET api/globalcompanyquantitylimits?page={page}&pagesize={pagesize}
Gets a collection of global Company Quantity Limits
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| page |
The 1-based index of the page of company quantity limits to return (optional, 1 by default) |
integer |
Default value is 1 |
| pagesize |
The number of company quantity limits to return per page (optional, 25 by default, max 100) |
integer |
Default value is 25 |
Body Parameters
None.
Response Information
Resource Description
A list of company quantity limit objects
PagedResultModelOfCompanyQuantityLimitModel| Name | Description | Type | Additional information |
|---|---|---|---|
| PageNumber | integer |
None. |
|
| PageCount | integer |
None. |
|
| PageSize | integer |
None. |
|
| Items | Collection of CompanyQuantityLimitModel |
None. |
|
| TotalRecordCount | integer |
None. |
Response Formats
application/json, text/json, application/json-patch+json
Sample:
{
"pageNumber": 1,
"pageCount": 2,
"pageSize": 3,
"items": [
{
"url": "sample string 5",
"id": 6,
"name": "sample string 2",
"isGlobal": true,
"maxAmount": 1.0,
"maxAmountQualifier": "DS - Days Supply",
"maxAmountTimePeriod": "CM - Calendar Month",
"maxAmountTimePeriodStartDate": "2025-12-09T20:14:46.7748715-06:00",
"maxAmountTimePeriodEndDate": "2025-12-09T20:14:46.7748715-06:00",
"maxAmountTimePeriodUnits": "sample string 3",
"effectiveEndDate": "2025-12-09T20:14:46.7748715-06:00",
"effectiveStartDate": "2025-12-09T20:14:46.7748715-06:00",
"createdOn": "2025-12-09T20:14:46.7748715-06:00",
"changedOn": "2025-12-09T20:14:46.7748715-06:00",
"auditNote": "sample string 4",
"active": true
},
{
"url": "sample string 5",
"id": 6,
"name": "sample string 2",
"isGlobal": true,
"maxAmount": 1.0,
"maxAmountQualifier": "DS - Days Supply",
"maxAmountTimePeriod": "CM - Calendar Month",
"maxAmountTimePeriodStartDate": "2025-12-09T20:14:46.7748715-06:00",
"maxAmountTimePeriodEndDate": "2025-12-09T20:14:46.7748715-06:00",
"maxAmountTimePeriodUnits": "sample string 3",
"effectiveEndDate": "2025-12-09T20:14:46.7748715-06:00",
"effectiveStartDate": "2025-12-09T20:14:46.7748715-06:00",
"createdOn": "2025-12-09T20:14:46.7748715-06:00",
"changedOn": "2025-12-09T20:14:46.7748715-06:00",
"auditNote": "sample string 4",
"active": true
}
],
"totalRecordCount": 4
}