Destinations / List conversions
List conversions
GET/v1/destinations/{id}/conversions
Returns the conversion actions defined on a connected destination, the options you pick from when configuring an action on a flow.
Path parameters
id
string · required
The destination id.
Response fields
id
string
The conversion action identifier.
name
string
Human-friendly name of the conversion action.
GET/v1/destinations/{id}/conversions
curl https://app.converly.io/api/v1/destinations/dest_google-ads/conversions \ -H "Authorization: Bearer sk_live_…"
200 OK
{
"data": [
{ "id": "demo_booked", "name": "Demo booked" },
{ "id": "purchase", "name": "Purchase" }
]
}