cURL
curl --request POST \ --url https://api.kakiyo.com/v1/prospects \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "campaignId": "campaign_12345abcde", "name": "John Smith", "url": "https://linkedin.com/in/johnsmith", "additionalFields": [ { "fieldName": "company", "fieldValue": "Acme Inc" } ] }'
{ "message": "Prospect added successfully" }
Adds a single prospect to a campaign
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Prospect to add
The body is of type object.
object
Prospect added successfully
The response is of type object.