GET
/
v1
/
lead
/
{id}
curl --request GET \
  --url https://api.droxy.ai/v1/lead/{id} \
  --header 'x-api-key: <api-key>'
{
  "chatbotName": "<string>",
  "startInterval": "<string>",
  "endInterval": "<string>",
  "createdAt": "<string>",
  "leads": [
    {
      "createdAt": 123,
      "email": "<string>",
      "name": "<string>",
      "phone": "<string>"
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

The chatbot's id.

Query Parameters

start
number

The beginning of the date range to query. Unix timestamp in milliseconds.

end
number

The end of the date range to query. Unix timestamp in milliseconds.

Response

200
application/json
OK

The response is of type object.