Flow
List flows
Flow
List flows
List your flows
GET
/
v1
/
flows
curl --request GET \
--url https://sandbox-api.getcove.co/v1/flows \
--header 'Authorization: <api-key>'
{
"flows": [
{
"id": "<string>",
"name": "<string>",
"steps": [
{
"id": "<string>",
"name": "<string>",
"options": {
"skippable": true
}
}
]
}
]
}
Authorizations
API authentication token
curl --request GET \
--url https://sandbox-api.getcove.co/v1/flows \
--header 'Authorization: <api-key>'
{
"flows": [
{
"id": "<string>",
"name": "<string>",
"steps": [
{
"id": "<string>",
"name": "<string>",
"options": {
"skippable": true
}
}
]
}
]
}