GET
/
chatbots
/
{chatbotId}
/
contacts
/
{contactId}
Retrieve contact
curl --request GET \
  --url https://api.chatling.ai/v2/chatbots/{chatbotId}/contacts/{contactId} \
  --header 'Authorization: Bearer <token>'
{
    "status": "success",
    "data": {
        "id": "qtr89df0-112d-d197-b541-3f8674663246",
        "name": "Mark Zuckerberg",
        "email": "[email protected]",
        "job_title": "CEO",
        "phone": "555-555-5555",
        "website": "https://meta.com",
        "company": "Meta Inc.",
        "created_at": "2024-06-08T13:38:33+00:00"
    }
}

Request parameters

Path

contactId
string
required
The contact ID.
chatbotId
string
required
The chatbot ID.

Response

status
string
The status of the request. Will be success if the request was successful, otherwise error.
data
object
{
    "status": "success",
    "data": {
        "id": "qtr89df0-112d-d197-b541-3f8674663246",
        "name": "Mark Zuckerberg",
        "email": "[email protected]",
        "job_title": "CEO",
        "phone": "555-555-5555",
        "website": "https://meta.com",
        "company": "Meta Inc.",
        "created_at": "2024-06-08T13:38:33+00:00"
    }
}