curl --request GET \
--url https://fulfillment.noyo.com/api/v1/individual_enrollments/{individual_enrollment_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://fulfillment.noyo.com/api/v1/individual_enrollments/{individual_enrollment_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://fulfillment.noyo.com/api/v1/individual_enrollments/{individual_enrollment_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://fulfillment.noyo.com/api/v1/individual_enrollments/{individual_enrollment_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://fulfillment.noyo.com/api/v1/individual_enrollments/{individual_enrollment_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://fulfillment.noyo.com/api/v1/individual_enrollments/{individual_enrollment_id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://fulfillment.noyo.com/api/v1/individual_enrollments/{individual_enrollment_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"cobra_enrollment": {},
"created": 1557512389,
"effective_end_date": "2019-10-01",
"effective_start_date": "2018-10-01",
"enroll_data": {
"premium": {
"amount": 50,
"unit": "Month"
}
},
"group_enrollment_id": "7499ea07-76c9-40f2-992b-952259e98384",
"id": "6670f290-4236-4690-bece-a110f9ad924b",
"individual_enrollment_configuration": {},
"individual_id": "30b74a44-d5b1-4123-a7a4-6d3aec251ba4",
"individual_type": "employee",
"line_of_coverage": "medical",
"modified": 1564440756,
"plan_id": "b988cd26-121a-4dd6-b0be-09399f6ecc0a",
"status": "active",
"version": "27bbf929-78ca-4339-8bb3-39b75f92c4a4"
}Get Individual Enrollment
Returns the latest version of a single individual enrollment based on the ID provided.
curl --request GET \
--url https://fulfillment.noyo.com/api/v1/individual_enrollments/{individual_enrollment_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://fulfillment.noyo.com/api/v1/individual_enrollments/{individual_enrollment_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://fulfillment.noyo.com/api/v1/individual_enrollments/{individual_enrollment_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://fulfillment.noyo.com/api/v1/individual_enrollments/{individual_enrollment_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://fulfillment.noyo.com/api/v1/individual_enrollments/{individual_enrollment_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://fulfillment.noyo.com/api/v1/individual_enrollments/{individual_enrollment_id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://fulfillment.noyo.com/api/v1/individual_enrollments/{individual_enrollment_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"cobra_enrollment": {},
"created": 1557512389,
"effective_end_date": "2019-10-01",
"effective_start_date": "2018-10-01",
"enroll_data": {
"premium": {
"amount": 50,
"unit": "Month"
}
},
"group_enrollment_id": "7499ea07-76c9-40f2-992b-952259e98384",
"id": "6670f290-4236-4690-bece-a110f9ad924b",
"individual_enrollment_configuration": {},
"individual_id": "30b74a44-d5b1-4123-a7a4-6d3aec251ba4",
"individual_type": "employee",
"line_of_coverage": "medical",
"modified": 1564440756,
"plan_id": "b988cd26-121a-4dd6-b0be-09399f6ecc0a",
"status": "active",
"version": "27bbf929-78ca-4339-8bb3-39b75f92c4a4"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Unique identifier of the individual enrollment
"6670f290-4236-4690-bece-a110f9ad924b"
Query Parameters
The relative date on which to view the state of the record
Response
Successful Response - Returns a single Individual Enrollment
Details about the member COBRA enrollment status, if applicable
Show child attributes
Show child attributes
The date the record was created
Line of coverage specific enroll data with volume information
Unique identifier of the group enrollment in Noyo
Unique identifier of the record in Noyo
Carrier-specific details describing the individual enrollment configuration
Unique identifier of the employee or dependent in Noyo
Type of member for the individual enrollment
dependent, employee "employee"
Line of coverage for the individual enrollment
medical, dental, vision, life, add, std, ltd, accident, critical_illness, cancer, health_fund, hospital_indemnity, pharmacy, wellness "dental"
The date the record was last updated
Unique identifier of the group plan in Noyo
Status of the individual enrollment
pending, active, waived, terminated "active"
Current version of the record
Show child attributes
Show child attributes
ISO-8601 date string for the effective date of the coverage
"2017-01-17"
ISO-8601 date string for the effective date of the coverage
"2017-01-17"
Show child attributes
Show child attributes
Was this page helpful?
