GET api/formularies/{formularyid}/formularyproductcoverageexclusions?page={page}&pagesize={pagesize}

Gets a collection of product exclusions tied to the specified formulary

Request Information

URI Parameters

NameDescriptionTypeAdditional information
formularyid

The id of the formulary for which product exclusions will be returned

integer

Required

page

The 1-based index of the page of product exclusions to return (optional, 1 by default)

integer

Default value is 1

pagesize

The number of product exclusions 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 product exclusion objects

PagedResultModelOfProductCoverageExclusionModel
NameDescriptionTypeAdditional information
PageNumber

integer

None.

PageCount

integer

None.

PageSize

integer

None.

Items

Collection of ProductCoverageExclusionModel

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:45:51.2515391-05:00",
      "effectiveEndDate": "2025-05-30T20:45:51.2515391-05:00",
      "auditNote": "sample string 3"
    },
    {
      "url": "sample string 4",
      "id": 5,
      "productID": "sample string 1",
      "productIDType": "sample string 2",
      "effectiveStartDate": "2025-05-30T20:45:51.2515391-05:00",
      "effectiveEndDate": "2025-05-30T20:45:51.2515391-05:00",
      "auditNote": "sample string 3"
    }
  ],
  "totalRecordCount": 4
}