GET
/
v1
/
flows
/
{flowId}
curl --request GET \
  --url https://sandbox-api.getcove.co/v1/flows/{flowId} \
  --header 'Authorization: <api-key>'
{
  "flow": {
    "id": "<string>",
    "name": "<string>",
    "steps": [
      {
        "id": "<string>",
        "name": "<string>",
        "options": {
          "skippable": true
        }
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

API authentication token

Path Parameters

flowId
string
required

Response

200
application/json
A successful response.
flow
object