GET api/formularies/{formularyid}/formularypriorauthorizations?page={page}&pagesize={pagesize}
Gets a collection of prior authorizations tied to the specified formulary
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
formularyid |
The id of the formulary for which prior authorizations will be returned |
integer |
Required |
page |
The 1-based index of the page of prior authorizations to return (optional, 1 by default) |
integer |
Default value is 1 |
pagesize |
The number of prior authorizations to return per page (optional, 100 by default, max 200) |
integer |
Default value is 100 |
Body Parameters
None.
Response Information
Resource Description
A list of prior authorization objects
PagedResultModelOfCoveragePriorAuthorizationModelName | Description | Type | Additional information |
---|---|---|---|
PageNumber | integer |
None. |
|
PageCount | integer |
None. |
|
PageSize | integer |
None. |
|
Items | Collection of CoveragePriorAuthorizationModel |
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 4", "id": 5, "productID": "sample string 1", "productIDType": "sample string 2", "effectiveStartDate": "2025-05-30T20:52:18.6248539-05:00", "effectiveEndDate": "2025-05-30T20:52:18.6248539-05:00", "auditNote": "sample string 3" }, { "url": "sample string 4", "id": 5, "productID": "sample string 1", "productIDType": "sample string 2", "effectiveStartDate": "2025-05-30T20:52:18.6248539-05:00", "effectiveEndDate": "2025-05-30T20:52:18.6248539-05:00", "auditNote": "sample string 3" } ], "totalRecordCount": 4 }