GET
/
api
/
v1
/
groups
/
{group_id}
/
plan_rates
Get Plan Rates by Group ID
curl --request GET \
  --url https://fulfillment.noyo.com/api/v1/groups/{group_id}/plan_rates
{
  "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": [
        {
          "end_date": "2023-12-25",
          "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"
        }
      ]
    }
  ]
}

Path Parameters

group_id
string<uuid>
required

Unique identifier of the group to filter by

Response

200 - application/json

Successfully retrieved plan rates organized by plan ID

The response is of type object.