GET
/
prospects
/
campaign
/
{campaignId}
curl --request GET \
  --url https://api.kakiyo.com/v1/prospects/campaign/{campaignId} \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "chat_12345abcde",
    "status": 2,
    "qualification": "inProgress",
    "paused": false,
    "lastMessage": "2023-06-15T15:30:00Z",
    "prospect": {
      "id": "prospect_12345abcde",
      "name": "John Smith",
      "url": "https://linkedin.com/in/johnsmith",
      "headline": "VP of Sales at Acme Inc"
    }
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

campaignId
string
required

ID of the campaign

Response

200
application/json

List of prospects

The response is of type object[].