GET api/groups/{groupid}/groupplans/{groupplanid}/deductibles/{deductibleid}/deductiblerates

Gets a collection of Deductible resources for a Group Plan

Request Information

URI Parameters

NameDescriptionTypeAdditional information
groupid

Group identifier

integer

Required

groupplanid

Group Plan identifier

integer

Required

deductibleid

Deductible identifier

integer

Required

Body Parameters

None.

Response Information

Resource Description

A list of deductible rate details

Collection of DeductibleRateModel
NameDescriptionTypeAdditional information
EffectiveStartDate

Gets or sets the effective start date of the deductible rate

date

None.

PersonAmount

Gets or sets the deductible amount for members

decimal number

None.

FamilyAmount

Gets or sets the deductible amount for families

decimal number

None.

DeductibleNo

Gets or sets the deductible id

integer

None.

Url

Gets or sets the link representing a link back to the resource

string

None.

ID

Gets or sets the identifier for the resource

integer

None.

Response Formats

application/json, text/json, application/json-patch+json

Sample:
[
  {
    "url": "sample string 3",
    "id": 4,
    "effectiveStartDate": "2025-07-16T14:15:29.8921009-05:00",
    "personAmount": 1.0,
    "familyAmount": 1.0,
    "deductibleNo": 2
  },
  {
    "url": "sample string 3",
    "id": 4,
    "effectiveStartDate": "2025-07-16T14:15:29.8921009-05:00",
    "personAmount": 1.0,
    "familyAmount": 1.0,
    "deductibleNo": 2
  }
]