Leads
Retrieve all leads associated with a specific chatflow
Chatflow ID
Successful operation
Unique identifier for the lead
cfd531e0-82fc-11e9-bc42-526af7764f64Name of the lead
John DoeEmail address of the lead
john.doe@example.comPhone number of the lead
+1234567890ID of the chatflow the lead is associated with
7c4e8b7a-7b9a-4b4d-9f3e-2d28f1ebea02ID of the chat session the lead is associated with
d7b0b5d8-85e6-4f2a-9c1f-9d9a0e2ebf6bDate and time when the lead was created
2024-08-24T14:15:22ZInvalid ID provided
Leads not found
Internal server error
GET /leads/{id} HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"id": "cfd531e0-82fc-11e9-bc42-526af7764f64",
"name": "John Doe",
"email": "john.doe@example.com",
"phone": "+1234567890",
"chatflowid": "7c4e8b7a-7b9a-4b4d-9f3e-2d28f1ebea02",
"chatId": "d7b0b5d8-85e6-4f2a-9c1f-9d9a0e2ebf6b",
"createdDate": "2024-08-24T14:15:22Z"
}
]Create a new lead associated with a specific chatflow
Unique identifier for the lead
cfd531e0-82fc-11e9-bc42-526af7764f64Name of the lead
John DoeEmail address of the lead
john.doe@example.comPhone number of the lead
+1234567890ID of the chatflow the lead is associated with
7c4e8b7a-7b9a-4b4d-9f3e-2d28f1ebea02ID of the chat session the lead is associated with
d7b0b5d8-85e6-4f2a-9c1f-9d9a0e2ebf6bDate and time when the lead was created
2024-08-24T14:15:22ZLead created successfully
Unique identifier for the lead
cfd531e0-82fc-11e9-bc42-526af7764f64Name of the lead
John DoeEmail address of the lead
john.doe@example.comPhone number of the lead
+1234567890ID of the chatflow the lead is associated with
7c4e8b7a-7b9a-4b4d-9f3e-2d28f1ebea02ID of the chat session the lead is associated with
d7b0b5d8-85e6-4f2a-9c1f-9d9a0e2ebf6bDate and time when the lead was created
2024-08-24T14:15:22ZInvalid request body
Validation error
Internal server error
POST /leads HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 253
{
"id": "cfd531e0-82fc-11e9-bc42-526af7764f64",
"name": "John Doe",
"email": "john.doe@example.com",
"phone": "+1234567890",
"chatflowid": "7c4e8b7a-7b9a-4b4d-9f3e-2d28f1ebea02",
"chatId": "d7b0b5d8-85e6-4f2a-9c1f-9d9a0e2ebf6b",
"createdDate": "2024-08-24T14:15:22Z"
}{
"id": "cfd531e0-82fc-11e9-bc42-526af7764f64",
"name": "John Doe",
"email": "john.doe@example.com",
"phone": "+1234567890",
"chatflowid": "7c4e8b7a-7b9a-4b4d-9f3e-2d28f1ebea02",
"chatId": "d7b0b5d8-85e6-4f2a-9c1f-9d9a0e2ebf6b",
"createdDate": "2024-08-24T14:15:22Z"
}Last updated