POST
/
prospects
Add Single Prospect
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

campaignId
string
required
Example:

"campaign_12345abcde"

name
string
required
Example:

"John Smith"

url
string<uri>
required
Example:

"https://linkedin.com/in/johnsmith"

additionalFields
object[]

Response

Prospect added successfully

message
string
Example:

"Prospect added successfully"