Skip to main content
GET
/
leads
/
{id}
Get Single Lead
curl --request GET \
  --url https://eu-gcp-api.vg-stuff.com/v3/leads/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>",
  "data": {
    "id": "<string>",
    "email": "<string>",
    "name": "<string>",
    "phone": "<string>",
    "agentId": "<string>",
    "convoId": "<string>",
    "user_id": "<string>",
    "ts": 123,
    "created_at": "<string>",
    "metaData": {}
  }
}
Returns full lead details including metadata. You must own the associated agent to access the lead.
Use the convoId field to link back to the conversation where the lead was captured.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The unique identifier of the lead

Response

Successful response

success
boolean
required

Indicates if the request was successful

message
string
required

Response message

data
object

Lead object with full details