POST
/
prospects
/
batch
curl --request POST \
  --url https://api.kakiyo.com/v1/prospects/batch \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "campaignId": "campaign_12345abcde",
  "prospects": [
    {
      "name": "John Smith",
      "url": "https://linkedin.com/in/johnsmith",
      "additionalFields": [
        {
          "fieldName": "company",
          "fieldValue": "Acme Inc"
        }
      ]
    }
  ]
}'
{
  "message": "3 prospects added successfully"
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Batch of prospects to add

The body is of type object.

Response

201
application/json

Prospects added successfully

The response is of type object.