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
- Issues (Beta)
Legacy
- Requests
- Transactions
Get a Transaction
Returns the latest version of a single member transaction based on the ID provided.
GET
/
api
/
v1
/
member_transactions
/
{transaction_id}
curl --request GET \
--url https://fulfillment.noyo.com/api/v1/member_transactions/{transaction_id}
{
"body": {
"coverages": [
{
"carrier_config": {
"bill_group": "1000001",
"member_group": "99999"
},
"carrier_id": "d0003042-eaae-4491-b219-4825456a3d16",
"lines_of_coverage": {
"dental": {
"enrolling_members": [
{
"id": "25434576-e85d-481b-a825-962fd575046f",
"member_type": "employee",
"plan_id": "2e6a04b6-21f3-40d7-a9e2-735196cc451b"
}
],
"waiving_members": []
},
"medical": {
"enrolling_members": [
{
"id": "25434576-e85d-481b-a825-962fd575046f",
"member_type": "employee",
"plan_id": "1873df52-c9e9-4e3a-995c-f47f32d0bd62"
}
],
"waiving_members": []
},
"vision": {
"enrolling_members": [
{
"id": "25434576-e85d-481b-a825-962fd575046f",
"member_type": "employee",
"plan_id": "9cb64800-022e-40af-ab80-8d945e430592"
}
],
"waiving_members": []
}
}
}
]
},
"carrier_id": "478e066e-9696-490e-b60f-47f40c96dc7c",
"created": 1557512389,
"employee_id": "25434576-e85d-481b-a825-962fd575046f",
"id": "a6e30204-87b2-4802-95a4-a156bd0f7435",
"lines_of_coverage": [
"medical",
"dental",
"vision"
],
"member_request_id": "bba6ea27-4004-4a52-a3d9-f986ace0d3da",
"modified": 1564440756,
"status": "processing"
}
Deprecated
Path Parameters
The unique identifier of the member transaction you would like to view
Example:
"a6e30204-87b2-4802-95a4-a156bd0f7435"
Response
200 - application/json
Successful Response - Returns a single Member Transaction
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://fulfillment.noyo.com/api/v1/member_transactions/{transaction_id}
{
"body": {
"coverages": [
{
"carrier_config": {
"bill_group": "1000001",
"member_group": "99999"
},
"carrier_id": "d0003042-eaae-4491-b219-4825456a3d16",
"lines_of_coverage": {
"dental": {
"enrolling_members": [
{
"id": "25434576-e85d-481b-a825-962fd575046f",
"member_type": "employee",
"plan_id": "2e6a04b6-21f3-40d7-a9e2-735196cc451b"
}
],
"waiving_members": []
},
"medical": {
"enrolling_members": [
{
"id": "25434576-e85d-481b-a825-962fd575046f",
"member_type": "employee",
"plan_id": "1873df52-c9e9-4e3a-995c-f47f32d0bd62"
}
],
"waiving_members": []
},
"vision": {
"enrolling_members": [
{
"id": "25434576-e85d-481b-a825-962fd575046f",
"member_type": "employee",
"plan_id": "9cb64800-022e-40af-ab80-8d945e430592"
}
],
"waiving_members": []
}
}
}
]
},
"carrier_id": "478e066e-9696-490e-b60f-47f40c96dc7c",
"created": 1557512389,
"employee_id": "25434576-e85d-481b-a825-962fd575046f",
"id": "a6e30204-87b2-4802-95a4-a156bd0f7435",
"lines_of_coverage": [
"medical",
"dental",
"vision"
],
"member_request_id": "bba6ea27-4004-4a52-a3d9-f986ace0d3da",
"modified": 1564440756,
"status": "processing"
}
Assistant
Responses are generated using AI and may contain mistakes.