POST
/v1/destinationsCreate a destination
Stores encrypted destination credentials and enables routing for supported events.
Authentication
Requires Authorization: Bearer ${API_KEY}. Create and rotate keys from the TrackLayer dashboard.
Request body schema
{
"type": "meta | google_ads | tiktok | klaviyo | webhook",
"name": "string",
"credentials": "object"
}Response schema · 201
{
"id": "dst_123",
"status": "active"
}Response example
{
"id": "dst_123",
"status": "active"
}Code examples
curl https://api.tracklayer.com/v1/destinations \
-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.