GET api/groups/{groupid}/groupplans/{groupplanid}/planbenefitlimits
Gets a collection of plan benefit limit resources for a Group Plan
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| groupid |
Group identifier |
integer |
Required |
| groupplanid |
Group Plan identifier |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
A list of plan benefit limit details
Collection of PlanBenefitLimitModel| Name | Description | Type | Additional information |
|---|---|---|---|
| GroupPlanNo |
Gets or sets the identifier for the Group Plan associated with this benefit limit |
integer |
None. |
| Description |
Gets or sets the description of the benefit limit resource |
string |
None. |
| CardholderAmount |
Gets or sets the benefit limit amount for the member |
decimal number |
None. |
| SpouseAmount |
Gets or sets the benefit limit amount for the spouse |
decimal number |
None. |
| OtherDependentAmount |
Gets or sets the benefit limit amount for other dependents |
decimal number |
None. |
| FamilyAmount |
Gets or sets the benefit amount for families |
decimal number |
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,
"groupPlanNo": 1,
"description": "sample string 2",
"cardholderAmount": 1.0,
"spouseAmount": 1.0,
"otherDependentAmount": 1.0,
"familyAmount": 1.0
},
{
"url": "sample string 3",
"id": 4,
"groupPlanNo": 1,
"description": "sample string 2",
"cardholderAmount": 1.0,
"spouseAmount": 1.0,
"otherDependentAmount": 1.0,
"familyAmount": 1.0
}
]