PUT
/
public
/
v1
/
contact
/
{contactId}
/
tags
Replace Tags for a contact
curl --request PUT \
  --url https://api.fello.ai/public/v1/contact/{contactId}/tags \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "tags": [
    "SELLER",
    "HOT LEAD"
  ]
}'
{
  "tags": [
    "HOT LEAD"
  ]
}

Authorizations

x-api-key
string
header
required

The API Key generated from your Fello account.

Path Parameters

contactId
string
required

Fello's unique identifier for a contact.

Minimum length: 1

Body

application/json

List of tags that will replace the existing tags of a contact.

tags
string[]
Example:
["SELLER", "HOT LEAD"]

Response

Success

tags
string[]
Example:
["HOT LEAD"]