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

Authorization
string
header
required

API authentication token

Response

200
application/json
A successful response.
flows
object[]