PATCH
/
v2
/
flows
/
{id}
Update flow
curl --request PATCH \
  --url https://api.portable.io/v2/flows/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "source": 87541,
  "destination": 89532
}'
{
  "id": 689422,
  "displayName": "My Google Calendar to BigQuery Flow",
  "source": 80190,
  "destination": 689422,
  "cron": "7 5 * * 5"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
integer
required

ID

Examples:

568971

Body

application/json

Flow to update

displayName
string

A human-readable name for the flow

Examples:

"My Freshsales to Snowflake 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

OK

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