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

Gets a collection of plan only step medication step drugs

Request Information

URI Parameters

NameDescriptionTypeAdditional information
groupplanid

Group Plan Identifier

integer

Required

page

The 1-based index of the page of plan only step medication step drugs to return (optional, 1 by default)

integer

Default value is 1

pagesize

The number of plan only step medication step drugs 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 step medication step drug objects

PagedResultModelOfPlanStepMedicationStepDrugModel
NameDescriptionTypeAdditional information
PageNumber

integer

None.

PageCount

integer

None.

PageSize

integer

None.

Items

Collection of PlanStepMedicationStepDrugModel

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,
      "planStepMedicationUrl": "sample string 1",
      "planStepMedicationId": 1,
      "stepDrugProductID": "sample string 2",
      "stepDrugProductIDType": "sample string 3",
      "stepDrugClassID": "sample string 4",
      "stepDrugSubClassID": "sample string 5",
      "createdOn": "2025-05-30T21:20:55.1356155-05:00",
      "changedOn": "2025-05-30T21:20:55.1356155-05:00"
    },
    {
      "url": "sample string 6",
      "id": 7,
      "planStepMedicationUrl": "sample string 1",
      "planStepMedicationId": 1,
      "stepDrugProductID": "sample string 2",
      "stepDrugProductIDType": "sample string 3",
      "stepDrugClassID": "sample string 4",
      "stepDrugSubClassID": "sample string 5",
      "createdOn": "2025-05-30T21:20:55.1356155-05:00",
      "changedOn": "2025-05-30T21:20:55.1356155-05:00"
    }
  ],
  "totalRecordCount": 4
}