GET
/
prospects
/
campaign
/
{campaignId}
List Campaign Prospects
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

List of prospects

id
string
Example:

"chat_12345abcde"

status
enum<integer>
Available options:
0,
1,
2,
3,
4,
5
Example:

2

qualification
enum<string>
Available options:
unqualified,
needVerification,
inProgress,
qualified
Example:

"inProgress"

paused
boolean
Example:

false

lastMessage
string<date-time>
Example:

"2023-06-15T15:30:00Z"

prospect
object