Skip to main content
POST
/
api
/
call-personalization-webhook
Push call personalization data
curl --request POST \
  --url https://api.getstrada.com/api/call-personalization-webhook \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "phoneNumber": "+15551234567",
  "data": {
    "firstName": "John",
    "policyNumber": "POL-12345",
    "claimStatus": "Active"
  }
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

API Key authentication

Body

application/json
phoneNumber
string
required

Customer phone number. Automatically normalized to E.164 format. US numbers are assumed for 10-digit inputs.

Example:

"+15551234567"

data
object
required

Key-value pairs of personalization data. Keys must match the variable names defined in your agent's prompt (e.g., firstName, policyNumber).

Example:
{
"firstName": "John",
"policyNumber": "POL-12345",
"claimStatus": "Active"
}

Response

Data pushed successfully

success
boolean

Whether the data was stored successfully

Example:

true