Skip to main content
POST
/
agent-folders
Create agent folder
curl --request POST \
  --url https://api.duvo.ai/v1/agent-folders \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "parent_folder_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'
{
  "folder": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "parent_folder_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "created_at": "<string>",
    "updated_at": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.duvo.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key authentication. Get your API key from the Duvo dashboard.

Body

application/json
name
string
required

Human-readable folder name

Required string length: 1 - 100
parent_folder_id
string<uuid> | null

Parent folder ID for nested folders. Omit or null to create at the root level.

Pattern: ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})$

Response

Default Response

folder
object
required