POST
/
prospects
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"
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Prospect to add

The body is of type object.

Response

201
application/json

Prospect added successfully

The response is of type object.