Skip to main content
POST
/
v2
/
flows
Create flow
curl --request POST \
  --url https://api.portable.io/v2/flows \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "type": "object",
  "source": 87541,
  "destination": 89532
}
'
{
  "data": {
    "$ref": "#/components/examples/flowFreshsalesToSnowflake/value"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Flow to create

displayName
string

A human-readable name for the flow

frequency
enum<string>

The frequency at which the flow should run. Mutally exclusive with the cron field.

Available options:
manual,
24h,
12h,
6h,
1h,
30m,
15m
cron
string

If provided, the flow will run according to this cron expression. Overrides the frequency field.

Response

Created

data
object
required
Example:
{
"$ref": "#/components/examples/flowGcalToBigquery/value"
}