Groups
- POSTCreate Group
- PUTEdit Group
- GETGet Group
- GETList Groups
- Configurations
- Connections
- Contacts
- Disconnections
- Enrollments
- Locations
- Plans
- Renewals
- Syncs
Members
- Employees
- Dependents
- Enrollments
- Premiums
Changes
Legacy
- Requests
- Transactions
Get Member Snapshots for Employee
Get a list of all member snapshots for a specific employee
curl --request GET \
--url https://fulfillment.noyo.com/api/v1/employees/{employee_id}/member_snapshots
{
"meta": {
"offset": 0,
"page_num": 1,
"page_size": 20,
"total_records": 2
},
"response": [
{
"created": 1599184829,
"employee_id": "7f39b5e0-460d-49e2-83b7-a1b6f2726b12",
"fulfillment_summary": [
{
"carrier_id": "4d4d815b-ae8f-430c-901f-1c9d5ee3f4f1",
"errors": [],
"status": "processing"
}
],
"id": "bc4aea3e-f728-4b05-85dc-e1ea14456e83",
"modified": 1599184829,
"status": "processing",
"version": "431b7d10-3da6-4c5e-bb2f-58a6ebb1224f"
},
{
"created": 1557512389,
"employee_id": "2613a221-d3c8-4c8a-86d5-e7e885fd1da9",
"fulfillment_summary": [
{
"carrier_id": "4d4d815b-ae8f-430c-901f-1c9d5ee3f4f1",
"errors": [],
"status": "sent"
}
],
"id": "30b74a44-d5b1-4123-a7a4-6d3aec251ba4",
"modified": 1564440756,
"status": "completed",
"version": "6260146a-3486-4c3d-b2a6-fcd3f8c84043"
}
]
}
Path Parameters
The unique identifier of the employee for which you would like to view member snapshots
Query Parameters
The max size of each page of results
The integer offset at which to start the page. Possible values are 0 to total_records - 1
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 member snapshot results
The date the record was created
Unique identifier of the employee in Noyo
Unique identifier of the record in Noyo
The date the record was last updated
Status of the member snapshot
processing
, completed
, replaced
, canceled
, submitted
Current version of the record
List of member snapshot fulfillment statuses per carrier
Unique identifier of the Carrier in Noyo
Status of the member snapshot fulfillment at carrier
invalid
, no_changes
, processing
, replaced
, scheduled
, sent
, valid
Errors generated while processing the member snapshot at the carrier
Was this page helpful?
curl --request GET \
--url https://fulfillment.noyo.com/api/v1/employees/{employee_id}/member_snapshots
{
"meta": {
"offset": 0,
"page_num": 1,
"page_size": 20,
"total_records": 2
},
"response": [
{
"created": 1599184829,
"employee_id": "7f39b5e0-460d-49e2-83b7-a1b6f2726b12",
"fulfillment_summary": [
{
"carrier_id": "4d4d815b-ae8f-430c-901f-1c9d5ee3f4f1",
"errors": [],
"status": "processing"
}
],
"id": "bc4aea3e-f728-4b05-85dc-e1ea14456e83",
"modified": 1599184829,
"status": "processing",
"version": "431b7d10-3da6-4c5e-bb2f-58a6ebb1224f"
},
{
"created": 1557512389,
"employee_id": "2613a221-d3c8-4c8a-86d5-e7e885fd1da9",
"fulfillment_summary": [
{
"carrier_id": "4d4d815b-ae8f-430c-901f-1c9d5ee3f4f1",
"errors": [],
"status": "sent"
}
],
"id": "30b74a44-d5b1-4123-a7a4-6d3aec251ba4",
"modified": 1564440756,
"status": "completed",
"version": "6260146a-3486-4c3d-b2a6-fcd3f8c84043"
}
]
}