GET api/groupplans/{groupplanid}/planonlypriorauthorizations?page={page}&pagesize={pagesize}

Gets a collection of Plan Only Prior Authorizations

Request Information

URI Parameters

NameDescriptionTypeAdditional information
groupplanid

Group Plan Identifier

integer

Required

page

The 1-based index of the page of plan only prior authorizations to return (optional, 1 by default)

integer

Default value is 1

pagesize

The number of plan only prior authorizations 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 plan only prior authorization objects

PagedResultModelOfPlanPriorAuthorizationModel
NameDescriptionTypeAdditional information
PageNumber

integer

None.

PageCount

integer

None.

PageSize

integer

None.

Items

Collection of PlanPriorAuthorizationModel

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,
      "coveragePriorAuthorizationId": 1,
      "coveragePriorAuthorizationUrl": "sample string 2",
      "productID": "sample string 3",
      "productIDType": "sample string 4",
      "effectiveStartDate": "2025-05-30T20:49:42.6455763-05:00",
      "effectiveEndDate": "2025-05-30T20:49:42.6455763-05:00",
      "createdOn": "2025-05-30T20:49:42.6455763-05:00",
      "needsReview": true,
      "optOut": true,
      "modified": true
    },
    {
      "url": "sample string 5",
      "id": 6,
      "coveragePriorAuthorizationId": 1,
      "coveragePriorAuthorizationUrl": "sample string 2",
      "productID": "sample string 3",
      "productIDType": "sample string 4",
      "effectiveStartDate": "2025-05-30T20:49:42.6455763-05:00",
      "effectiveEndDate": "2025-05-30T20:49:42.6455763-05:00",
      "createdOn": "2025-05-30T20:49:42.6455763-05:00",
      "needsReview": true,
      "optOut": true,
      "modified": true
    }
  ],
  "totalRecordCount": 4
}