POST
/
public
/
v1
/
contact
/
{contactId}
/
tags
curl --request POST \
  --url https://api.hifello.com/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

Unique identifier of the contact to tag

Body

application/json
List of tags to be added to the contact.

The body is of type object.

Response

200
application/json
Success

The response is of type object.