v1

latestOpenAPI 3.0.1MIT2026-07-26104203277.0 KB

List Collections.

Retrieves a paginated list of collections with optional search functionality.

get/v1/voice-agents/collections/list

Query parameters

skipinteger
Example:1

Number of items to skip (pagination).

takeinteger
Example:10

Number of items to take (pagination).

searchstring
Example:My Collection

Searches collections by name or description.

Response

Successful response

successboolean
messagestring

Example response

{
  "success": true,
  "message": "Success",
  "data": {
    "items": [
      {
        "id": "d949f13f-40d2-4e48-ac86-b66633070603",
        "name": "Customer Support Tools",
        "description": "Tools used for customer support operations",
        "userId": "d949f13f-40d2-4e48-ac86-b66633070603",
        "projectId": "d949f13f-40d2-4e48-ac86-b66633070603",
        "webToolsCount": 5,
        "createdAt": "2024-01-15T10:30:00Z",
        "updatedAt": "2024-01-15T10:30:00Z"
      }
    ],
    "total": 25,
    "filtered": 10
  }
}