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

Authorizations

Authorization
string
header
required

API authentication token

Body

application/json
flow
object

Response

200
application/json
A successful response.
flowId
string