PUT
/
segment
/
contact
/
update?id=
{id}
curl --request PUT \
  --url 'https://api.precallai.com/api/v1/segment/contact/update?id={id}' \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "first_name": "<string>",
  "last_name": "<string>",
  "email": "<string>",
  "phone": "<string>",
  "description": "<string>",
  "job_title": "<string>",
  "lifecycle_stage": "<string>",
  "lead_status": "<string>"
}'
{
  "message": "Contact audience updated successfully."
}

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

The ID of the contact to update audience

Body

application/json

Contact to add

The body is of type object.

Response

200
application/json

Update Contact audience response

The response is of type object.