VoxLink.ai

API Reference

Update folder

Rename a folder or change its color

Updated 30 June 2026

Update a folder's name or color. Only the fields you send are changed.

Path Parameters

idintegerrequired

The folder ID. Must belong to your account.

Request Body

namestring

New name (max 255 characters). Must be unique within your account.

colorstring

New color. One of: gray, slate, red, orange, amber, green, teal, blue, purple, pink. Send null to clear it.

Response

messagestring

Success message

dataobject

idinteger

The folder ID

namestring

The folder name

colorstring

The folder color (or null)

assistants_countinteger

Number of assistants in this folder

{
  "message": "Folder updated successfully",
  "data": { "id": 12, "name": "Acme Inc.", "color": "pink", "assistants_count": 4 }
}
{ "message": "Folder not found" }

Related guides