GET
/
lead
/
{id_lead}
curl --request GET \
  --url https://api.breakcold.com/lead/{id_lead} \
  --header 'X-API-KEY: <api-key>'
{
  "id": "123",
  "first_name": "John",
  "last_name": "Doe",
  "email": "john.doe@example.com",
  "company": "Example Corp",
  "created_at": "2021-07-21T17:32:28Z",
  "updated_at": "2021-07-21T17:32:28Z"
}

Authorizations

X-API-KEY
string
header
required

Path Parameters

id_lead
string
required

The unique identifier of the lead.

Query Parameters

id_space
string

The workspace identifier. This is not required if 'X-API-KEY' is provided in the header for authentication.

Response

200
application/json
Lead retrieved successfully.

A model representing a lead with various personal and professional details.

id
string
Example:

"123"

first_name
string
Example:

"John"

last_name
string
Example:

"Doe"

email
string
company
string
created_at
string
updated_at
string