POST
/
v1
/
api
/
flow-folders
/
{folderId}
/
pathways
curl --request POST \
  --url https://api.trillet.ai/v1/api/flow-folders/{folderId}/pathways \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "pathwayId": "<string>",
  "pathwayType": "<string>"
}'
{
  "_id": "folder123",
  "workspaceId": "workspace456",
  "name": "My Workflow Folder",
  "color": "#FF0000",
  "icon": "folder-icon",
  "flowType": "call",
  "pathwayModel": "Flow",
  "pathways": ["flow123"],
  "createdAt": "2023-10-15T09:30:00Z",
  "updatedAt": "2023-10-15T10:00:00Z"
}

Path Parameters

folderId
string
required

The ID of the folder to which the flow will be added.

Request Body

pathwayId
string
required

The ID of the flow to add to the folder.

pathwayType
string
required

The type of the flow, must be either “call” or “message”.

Response Fields

_id
string

The unique identifier of the folder.

workspaceId
string

The identifier of the workspace where the folder belongs.

name
string

The name of the folder.

color
string

The color of the folder, represented as a hex code.

icon
string

The icon identifier for the folder.

flowType
string

The type of flow, either “call” or “message”.

pathwayModel
string

The model type for flows, derived from flowType.

pathways
array

An array of flow IDs associated with the folder.

createdAt
string

Timestamp when the folder was created (ISO 8601 format).

updatedAt
string

Timestamp when the folder was last updated (ISO 8601 format).

Example Request

{
  "pathwayId": "flow123",
  "pathwayType": "call"
}
{
  "_id": "folder123",
  "workspaceId": "workspace456",
  "name": "My Workflow Folder",
  "color": "#FF0000",
  "icon": "folder-icon",
  "flowType": "call",
  "pathwayModel": "Flow",
  "pathways": ["flow123"],
  "createdAt": "2023-10-15T09:30:00Z",
  "updatedAt": "2023-10-15T10:00:00Z"
}