Smart Link Postbacks
Create Smart Link Postback
Create a postback that fires for selected Smart Link conversion types
post/api/smart-link-postbacks
Request body
Example request
{
"url": "https://example.com/postback?click={click_id}&type={conversion_type}&gclid={gclid}",
"smart_link_scope": "campaign_specific",
"conversion_types": [
"new_subscriber",
"new_transaction"
],
"smart_link_ids": [
"01JTESTLINK000000000000001"
]
}Response
Success
Example response
{
"data": {
"id": 123,
"url": "https://example.com/postback?click={click_id}&type={conversion_type}&gclid={gclid}",
"smart_link_scope": "global",
"conversion_types": [
"new_subscriber",
"new_transaction"
],
"smart_link_ids": [],
"smart_links": [],
"latest_response": null,
"created_at": "2026-01-31T21:45:00+00:00",
"updated_at": "2026-01-31T21:45:00+00:00"
},
"_meta": {
"_credits": {
"used": 0,
"balance": 999999,
"note": "Free endpoint"
},
"_cache": {
"is_cached": false,
"note": "Cache disabled for this endpoint"
}
}
}