List Folders

GET /folders

Get all folders

Query parameters

  • keyword string

    Keyword to filter the list to folders that partially match the name.

Responses

GET /folders
curl \
 -X GET https://getcody.ai/api/v1/folders \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": [
    {
      "id": "string",
      "name": "string",
      "created_at": 42
    }
  ],
  "meta": {
    "pagination": {
      "count": 42,
      "total": 42,
      "per_page": 42,
      "total_pages": 42,
      "next_page": 42,
      "previous_page": 42
    }
  }
}