Groups
- POSTCreate Group
- PUTEdit Group
- GETGet Group
- GETList Groups
- Configurations
- Connections
- Contacts
- Disconnections
- Enrollments
- Locations
- Plans
- Renewals
- Syncs
Members
- Employees
- Dependents
- Enrollments
- Premiums
Changes
- Snapshots
- Tracking
Legacy
- Requests
- Transactions
Get Renewal Decisions
Returns all renewal decisions. This includes the status, which determines whether the carrier is ready to accept member requests for the new plan year. If the status is not_ready
, Noyo will return one or more issues, each with a level and message.
curl --request GET \
--url https://fulfillment.noyo.com/api/v1/renewal_decisions
{
"meta": {
"offset": 0,
"page_num": 1,
"page_size": 20,
"total_records": 1
},
"response": [
{
"body": {
"carriers": [
{
"carrier_id": "bf81f0c4-3105-4240-b62b-aa6de3f607e4",
"lines_of_coverage": {
"dental": {
"open_enrollment_end_date": "2022-01-31",
"open_enrollment_start_date": "2022-01-01",
"plans": [
{
"name": "Dental Plus Plan"
}
]
},
"medical": {
"open_enrollment_end_date": "2022-01-31",
"open_enrollment_start_date": "2022-01-01",
"plans": [
{
"plan_id": "818e52d4-6c34-4914-b716-a3047c85e468"
},
{
"plan_id": "f9897240-87f8-4d9d-a68f-58bc445fe0b2"
},
{
"name": "Select Plus PPO HDHP Bronze BRJJ /C38"
}
]
}
}
}
]
},
"created": 1557862286,
"group_id": "2613a221-d3c8-4c8a-86d5-e7e885fd1da9",
"id": "b5f2b5f7-0336-45f7-baf1-7e11dfac50a6",
"issues": [
{
"level": "error",
"message": "Life open enrollment start date is 2021-08-01 in carrier system"
},
{
"level": "error",
"message": "LTD Plan not available yet in carrier system"
}
],
"modified": 1557862286,
"renewal_date": "2022-01-01",
"status": "not_ready",
"version": "23be0ba3-1183-4e8e-8e9d-644527414c6e"
}
]
}
Query Parameters
Group name to filter by, exact match
Status to filter by, exact match
Filter request by renewal date starting from date provided
Filter request by renewal date up to date provided
Response
Metadata associated with the response data
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
x > 1
The total number of records in the entire matching data set
x > 0
List of renewal decisions
The carrier and coverage expectations for the open enrollment period
Carrier-specific open enrollment information
Unique identifier of the carrier in Noyo
Expected open enrollment information for each line of coverage
Open enrollment information relating to accident plans
Open enrollment information relating to AD&D plans
Open enrollment information relating to cancer plans
Open enrollment information relating to critical illness plans
Open enrollment information relating to dental plans
Open enrollment information relating to hospital indemnity plans
Open enrollment information relating to life plans
Open enrollment information relating to LTD plans
Open enrollment information relating to medical plans
Open enrollment information relating to STD plans
Open enrollment information relating to vision plans
The date the record was created
Unique identifier of the group in Noyo
Unique identifier of the record in Noyo
List of any issues that explain why the open enrollment is 'not_ready'. Will be empty if it is status 'ready' or 'submitted'.
The level or severity of the issue found
warning
, error
Message describing the issue found and any steps to resolve
Unique identifier of the associated carrier in Noyo
Line of coverage related to the issue
The date the record was last updated
The start date for the new enrollment year when all coverage changes and decisions should become active
Calculated status based on whether or not the carrier system matches the expected renewal decisions
submitted
, not_ready
, ready
, done
Current version of the record
Was this page helpful?
curl --request GET \
--url https://fulfillment.noyo.com/api/v1/renewal_decisions
{
"meta": {
"offset": 0,
"page_num": 1,
"page_size": 20,
"total_records": 1
},
"response": [
{
"body": {
"carriers": [
{
"carrier_id": "bf81f0c4-3105-4240-b62b-aa6de3f607e4",
"lines_of_coverage": {
"dental": {
"open_enrollment_end_date": "2022-01-31",
"open_enrollment_start_date": "2022-01-01",
"plans": [
{
"name": "Dental Plus Plan"
}
]
},
"medical": {
"open_enrollment_end_date": "2022-01-31",
"open_enrollment_start_date": "2022-01-01",
"plans": [
{
"plan_id": "818e52d4-6c34-4914-b716-a3047c85e468"
},
{
"plan_id": "f9897240-87f8-4d9d-a68f-58bc445fe0b2"
},
{
"name": "Select Plus PPO HDHP Bronze BRJJ /C38"
}
]
}
}
}
]
},
"created": 1557862286,
"group_id": "2613a221-d3c8-4c8a-86d5-e7e885fd1da9",
"id": "b5f2b5f7-0336-45f7-baf1-7e11dfac50a6",
"issues": [
{
"level": "error",
"message": "Life open enrollment start date is 2021-08-01 in carrier system"
},
{
"level": "error",
"message": "LTD Plan not available yet in carrier system"
}
],
"modified": 1557862286,
"renewal_date": "2022-01-01",
"status": "not_ready",
"version": "23be0ba3-1183-4e8e-8e9d-644527414c6e"
}
]
}