POST
/v1/audiences/predictiveCreate a predictive audience
Creates an audience from an LTV, churn, or conversion propensity model.
Authentication
Requires Authorization: Bearer ${API_KEY}. Create and rotate keys from the TrackLayer dashboard.
Request body schema
{
"name": "string",
"model": "ltv | churn | propensity",
"threshold": "number"
}Response schema · 201
{
"id": "aud_123",
"type": "predictive",
"status": "training"
}Response example
{
"id": "aud_123",
"type": "predictive",
"status": "training"
}Code examples
curl https://api.tracklayer.com/v1/audiences/predictive \
-X POST \
-H "Authorization: Bearer ${API_KEY}" \
-H "Content-Type: application/json" \
-d '{"event_name":"purchase","user_id":"u_123","properties":{"order_id":"100045","value":129}}'Try it out
Use the dashboard to create an API key, then run one of the examples above with TRACKLAYER_API_KEY set in your environment.