POST
/
lead
/
{id_lead}
/
track
curl --request POST \
  --url https://api.breakcold.com/lead/{id_lead}/track \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '{
  "id_space": "<string>"
}'
{
  "id_lead": "123",
  "status": "tracking"
}

Authorizations

X-API-KEY
string
header
required

Path Parameters

id_lead
string
required

The ID of the lead to track.

Query Parameters

id_space
string

The space ID. Required unless X-API-KEY is provided in the header.

Body

application/json
id_space
string

Workspace identifier for the lead.

Response

200
application/json
Lead tracked successfully

The response is of type any.