GET
/
api
/
v1
/
groups
/
{group_id}
/
contacts
/
{contact_id}
curl --request GET \
  --url https://fulfillment.noyo.com/api/v1/groups/{group_id}/contacts/{contact_id}
{
  "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",
    "executive"
  ],
  "version": "ef3fef8d-4889-40f4-a0f8-377b9dd23d98"
}

Path Parameters

group_id
string
required

The unique identifier of the group the contact belongs to

Example:

"2613a221-d3c8-4c8a-86d5-e7e885fd1da9"

contact_id
string
required

The unique identifier of the contact to be retrieved

Example:

"30b74a44-d5b1-4123-a7a4-6d3aec251ba4"

Response

200 - application/json
Successful Response - Returns a single Group Contact

The response is of type object.