get https://a.klaviyo.com/api/lists//flow-triggers
Get all flows where the given list ID is being used as the trigger.
Rate limits:
Burst: 3/s
Steady: 60/m
Scopes:
flows:read
lists:read
Responses
Get all flows where the given list ID is being used as the trigger.
Rate limits:
Burst: 3/s
Steady: 60/m
Scopes:
flows:read
lists:read
xxxxxxxxxx
curl --request GET \
--url https://a.klaviyo.com/api/lists/id/flow-triggers \
--header 'Authorization: Klaviyo-API-Key your-private-api-key' \
--header 'accept: application/vnd.api+json' \
--header 'revision: 2025-01-15'
xxxxxxxxxx
}
{
"data": [
{
"type": "flow",
"id": "string",
"attributes": {
"name": "string",
"status": "string",
"archived": true,
"created": "2022-11-08T00:00:00+00:00",
"updated": "2022-11-08T00:00:00+00:00",
"trigger_type": "Added to List"
},
"links": {
"self": "string"
},
"relationships": {
"flow-actions": {
"links": {
"self": "string",
"related": "string"
}
},
"tags": {
"links": {
"self": "string",
"related": "string"
}
}
}
}
],