Skip to main content
POST
/
api
/
outreach
Trigger outreach processing for a lead
curl --request POST \
  --url https://your-instance.example.com/api/outreach \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "phoneNumber": "<string>",
  "email": "<string>",
  "firstName": "<string>",
  "lastName": "<string>",
  "name": "<string>",
  "contactId": "<string>",
  "_id": "<string>",
  "id": "<string>"
}
'
{}

Authorizations

Authorization
string
header
required

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

Body

application/json

Lead data payload. Accepts arbitrary additional fields that are mapped to contact dynamic properties.

phoneNumber
string
email
string
firstName
string
lastName
string
name
string
contactId
string
_id
string
id
string

Response

Outreach processed successfully

Generic response envelope. Endpoint-specific fields are intentionally open.