cURL
curl --request GET \ --url https://fulfillment.noyo.com/api/v1/groups/{group_id}/plan_rates \ --header 'Authorization: Bearer <token>'
{ "meta": { "offset": 1, "page_num": 2, "page_size": 2, "total_records": 1 }, "response": [ { "plan_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "plan_rate_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "temporal_rates": [ { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "plan_rate_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "rate_structure": { "calculation_type": "member_based", "options": [ "<string>" ] }, "start_date": "2023-12-25", "end_date": "2023-12-25" } ] } ] }
Get a list of plan rates for a group
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Unique identifier of the group to filter by
Successfully retrieved plan rates organized by plan ID
Metadata associated with the response data
Show child attributes
The offset of the first response record within the matching data set
x >= 0
The page number of the response records within the overall data set (1-based integer)
x >= 1
The maximum number of response records on each page of results
The total number of records in the entire matching data set
List of plan rate results
Unique identifier of the plan
Unique identifier of the plan rate
List of temporal rates for this plan
member_based
member_based_volume
family_unit_based
Was this page helpful?