PUT
/
api
/
v1
/
groups
/
{group_id}
/
contacts
/
{contact_id}
/
{version}
Edit an existing Group Contact
curl --request PUT \
  --url https://fulfillment.noyo.com/api/v1/groups/{group_id}/contacts/{contact_id}/{version} \
  --header 'Content-Type: application/json' \
  --data '{
  "carrier_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "email": "catherine.briggs@example.com",
  "first_name": "Catherine",
  "last_name": "Briggs",
  "phone_number": "+15555551212",
  "primary_contact": true,
  "title": "Engineer",
  "types": [
    "company"
  ]
}'
{
  "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<uuid>
required
contact_id
string<uuid>
required
version
string<uuid>
required

Body

application/json
carrier_id
string<uuid>

Unique identifier of a Carrier in Noyo's system

email
string

Work email address of the group contact

Example:

"catherine.briggs@example.com"

first_name
string

First name of the group contact

Example:

"Catherine"

last_name
string

Last name of the group contact

Example:

"Briggs"

phone_number
string

Work phone number of the group contact in E.164 format

Example:

"+15555551212"

primary_contact
boolean

True if contact is the primary contact for the group

title
string

Job title of the group contact

Example:

"Engineer"

types
enum<string>[]

List of contact types for the group contact

Minimum length: 1

Response

200 - application/json

Successful Response - Returns the modified Group Contact

created
integer
required

The date the record was originated

group_id
string<uuid>
required

Unique identifier of the group in Noyo

id
string<uuid>
required

Unique identifier of the group contact in Noyo

modified
integer
required

The date the record was last updated

types
enum<string>[]
required

List of contact types for the group contact

Minimum length: 1
version
string<uuid>
required

Version of the group contact record

carrier_id
string<uuid>

Unique identifier of a Carrier in Noyo's system

email
string

Work email address of the group contact

Example:

"catherine.briggs@example.com"

first_name
string

First name of the group contact

Example:

"Catherine"

last_name
string

Last name of the group contact

Example:

"Briggs"

phone_number
string

Work phone number of the group contact in E.164 format

Example:

"+15555551212"

primary_contact
boolean

True if contact is the primary contact for the group

title
string

Job title of the group contact

Example:

"Engineer"