- Flow Routes
- Create Flow
Flow Routes
Create Flow
Create a new Flow.
/api/v2/flows
curl --request POST \
--url https://api.senddotssandbox.com/api/v2/flows \
--header 'Authorization: Basic AUTH_VALUE' \
--header 'Content-Type: application/json' \
--data '{
"steps": "array"
}'
Body
A list of steps. Can either be a string or an object with additional properties. Example: A redirect
step looks like {"name": "redirect", "redirect_url": "https://example.com"}
The user's id.
Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
Response
ID of the flow
.
Date that the flow
was created.
ID of the user
that has claimed the flow
.
Array of steps in the flow.
Array of steps that have been completed in the flow.
URL to access the flow
. Can be embedded in an iframe
.
Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
curl --request POST \
--url https://api.senddotssandbox.com/api/v2/flows \
--header 'Authorization: Basic AUTH_VALUE' \
--header 'Content-Type: application/json' \
--data '{
"steps": "array"
}'