GET api/formularies/{formularyid}/formularycompanygenderlimits?page={page}&pagesize={pagesize}
Gets a collection of gender limits tied to the specified formulary
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| formularyid |
The id of the formulary for which gender limits will be returned |
integer |
Required |
| page |
The 1-based index of the page of gender limits to return (optional, default is 1) |
integer |
Default value is 1 |
| pagesize |
The number of gender limits to return per page (optional, default is 25, max is 100) |
integer |
Default value is 25 |
Body Parameters
None.
Response Information
Resource Description
A list of gender limit objects
PagedResultModelOfFormularyCompanyGenderLimitModel| Name | Description | Type | Additional information |
|---|---|---|---|
| PageNumber | integer |
None. |
|
| PageCount | integer |
None. |
|
| PageSize | integer |
None. |
|
| Items | Collection of FormularyCompanyGenderLimitModel |
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,
"companyGenderLimitNo": 1,
"companyGenderLimitUrl": "sample string 1",
"productID": "sample string 2",
"productIDType": "sample string 3",
"gender": "sample string 4",
"effectiveStartDate": "2025-12-09T20:11:48.4137662-06:00",
"effectiveEndDate": "2025-12-09T20:11:48.4137662-06:00",
"active": true
},
{
"url": "sample string 5",
"id": 6,
"companyGenderLimitNo": 1,
"companyGenderLimitUrl": "sample string 1",
"productID": "sample string 2",
"productIDType": "sample string 3",
"gender": "sample string 4",
"effectiveStartDate": "2025-12-09T20:11:48.4137662-06:00",
"effectiveEndDate": "2025-12-09T20:11:48.4137662-06:00",
"active": true
}
],
"totalRecordCount": 4
}