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
List Contacts
Get a list of contacts for a group.
curl --request GET \
--url https://fulfillment.noyo.com/api/v1/groups/{group_id}/contacts
{
"meta": {
"offset": 0,
"page_num": 1,
"page_size": 20,
"total_records": 2
},
"response": [
{
"created": 1557512389,
"email": "davidsmith@testcorp.com",
"first_name": "David",
"group_id": "2613a221-d3c8-4c8a-86d5-e7e885fd1da9",
"id": "c2f5489d-36d1-4fb0-bf9f-105ad5dd0b3e",
"last_name": "Smith",
"modified": 1543215342,
"phone_number": "+14255551234",
"primary_contact": true,
"title": "Chief People Officer",
"types": [
"company",
"billing"
],
"version": "6ba43c6e-69f2-435f-a126-8595a798eb52"
},
{
"created": 1557512389,
"email": "carolinejohnson@testcorp.com",
"first_name": "Caroline",
"group_id": "2613a221-d3c8-4c8a-86d5-e7e885fd1da9",
"id": "7e3c1f14-e7e7-42b8-81d8-3fcd7bd7d418",
"last_name": "Johnson",
"modified": 1543215342,
"phone_number": "+14255551234",
"primary_contact": false,
"title": "VP of Human Resources",
"types": [
"executive"
],
"version": "88bfbe28-7f8b-4497-a50b-932ee3387b68"
}
]
}
Path Parameters
The unique identifier of the group for which you would like to view contacts
"2613a221-d3c8-4c8a-86d5-e7e885fd1da9"
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 contact results
The date the record was originated
Unique identifier of the group in Noyo
Unique identifier of the group contact in Noyo
The date the record was last updated
List of contact types for the group contact
company
, billing
, executive
, online
, carrier
Version of the group contact record
Unique identifier of a Carrier in Noyo's system
Work email address of the group contact
"catherine.briggs@example.com"
First name of the group contact
"Catherine"
Last name of the group contact
"Briggs"
Work phone number of the group contact in E.164 format
"+15555551212"
True if contact is the primary contact for the group
Job title of the group contact
"Engineer"
Was this page helpful?
curl --request GET \
--url https://fulfillment.noyo.com/api/v1/groups/{group_id}/contacts
{
"meta": {
"offset": 0,
"page_num": 1,
"page_size": 20,
"total_records": 2
},
"response": [
{
"created": 1557512389,
"email": "davidsmith@testcorp.com",
"first_name": "David",
"group_id": "2613a221-d3c8-4c8a-86d5-e7e885fd1da9",
"id": "c2f5489d-36d1-4fb0-bf9f-105ad5dd0b3e",
"last_name": "Smith",
"modified": 1543215342,
"phone_number": "+14255551234",
"primary_contact": true,
"title": "Chief People Officer",
"types": [
"company",
"billing"
],
"version": "6ba43c6e-69f2-435f-a126-8595a798eb52"
},
{
"created": 1557512389,
"email": "carolinejohnson@testcorp.com",
"first_name": "Caroline",
"group_id": "2613a221-d3c8-4c8a-86d5-e7e885fd1da9",
"id": "7e3c1f14-e7e7-42b8-81d8-3fcd7bd7d418",
"last_name": "Johnson",
"modified": 1543215342,
"phone_number": "+14255551234",
"primary_contact": false,
"title": "VP of Human Resources",
"types": [
"executive"
],
"version": "88bfbe28-7f8b-4497-a50b-932ee3387b68"
}
]
}