POST
/
v2
/
flows
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": {
    "id": 689422,
    "displayName": "My Freshsales to Snowflake Flow",
    "source": 80562,
    "destination": 689421,
    "frequency": "24h"
  }
}

Authorizations

Authorization
string
headerrequired

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

Body

application/json
displayName
string

A human-readable name for the flow

frequency
enum<string>

The frequency at which the flow should run

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

Response

201 - application/json
data
object
required