GET api/globalcompanyagelimits?page={page}&pagesize={pagesize}
Gets a collection of global Company Age Limits
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| page |
The 1-based index of the page of company age limits to return (optional, 1 by default) |
integer |
Default value is 1 |
| pagesize |
The number of company age 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 age limit objects
PagedResultModelOfCompanyAgeLimitModel| Name | Description | Type | Additional information |
|---|---|---|---|
| PageNumber | integer |
None. |
|
| PageCount | integer |
None. |
|
| PageSize | integer |
None. |
|
| Items | Collection of CompanyAgeLimitModel |
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 6",
"id": 7,
"name": "sample string 2",
"isGlobal": true,
"minAge": 1,
"minAgeQualifier": "sample string 3",
"maxAge": 1,
"maxAgeQualifier": "sample string 4",
"createdOn": "2025-12-09T20:13:11.0830165-06:00",
"auditNote": "sample string 5",
"active": true
},
{
"url": "sample string 6",
"id": 7,
"name": "sample string 2",
"isGlobal": true,
"minAge": 1,
"minAgeQualifier": "sample string 3",
"maxAge": 1,
"maxAgeQualifier": "sample string 4",
"createdOn": "2025-12-09T20:13:11.0830165-06:00",
"auditNote": "sample string 5",
"active": true
}
],
"totalRecordCount": 4
}