get https://a.klaviyo.com/api/flows//tags/
Return all tags associated with the given flow ID.
Rate limits:
Burst: 3/s
Steady: 60/m
Scopes:
Flows Read
Tags Read
Responses
Return all tags associated with the given flow ID.
Rate limits:
Burst: 3/s
Steady: 60/m
Scopes:
Flows Read
Tags Read
xxxxxxxxxx
curl --request GET \
--url https://a.klaviyo.com/api/flows/flow_id/tags/ \
--header 'Authorization: Klaviyo-API-Key your-private-api-key' \
--header 'accept: application/json' \
--header 'revision: 2023-01-24'
xxxxxxxxxx
21{
"data": [
{
"type": "tag",
"id": "abcd1234-ef56-gh78-ij90-abcdef123456",
"attributes": {
"name": "My Tag"
},
"links": {
"self": "string"
}
}
],
"links": {
"self": "string",
"first": "string",
"last": "string",
"prev": "string",
"next": "string"
}
}