get https://a.klaviyo.com/api/flows//relationships//
If the related_resource
is tags
, returns the tag IDs of all tags associated with the given flow.
Rate limits:
Burst: 3/s
Steady: 60/m
Scopes:
Flows Read
Tags Read
Responses
If the related_resource
is tags
, returns the tag IDs of all tags associated with the given flow.
Rate limits:
Burst: 3/s
Steady: 60/m
Scopes:
Flows Read
Tags Read
xxxxxxxxxx
curl --request GET \
--url https://a.klaviyo.com/api/flows/id/relationships/flow-actions/ \
--header 'Authorization: Klaviyo-API-Key your-private-api-key' \
--header 'accept: application/json' \
--header 'revision: 2023-01-24'
xxxxxxxxxx
{
"data": [
{
"type": "tag",
"id": "string"
}
]
}