Skip to content
Last updated
PATCHhttps://api.aitronos.com/v1/streamline/automations/{automation_id}/folder

Assign an automation to a folder or remove it from a folder.

automation_id string required

Automation ID (sauto_ prefixed)

Request Body

folder_id string | null required

Target folder ID or null to remove from folder

display_order integer optional

Sort position within folder

Returns

Returns the updated automation object with folder assignment.

cURL - Move to Folder
curl -X PATCH "https://api.aitronos.com/api/v1/streamline/automations/sauto_jkl012/folder" \
  -H "X-API-Key: $FREDDY_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "folder_id": "sfold_abc123",
    "display_order": 2
  }'