List folders in organization

List folders in organization

In this article, you will learn how to list folders in an organization.

List folders in organization

Request Type: GET
Header: Authorization: ApiKey <my_api_token>
URL: https://app.banyanboard.com/api/orgs/<my_org_uuid>/folders/

Results:
Info
{
  "count": 2,
  "results": [
    {
      "banner_file_thumbnail_url": "https://example.com/thumbnail1.jpg",
      "creator_name": "user_12345",
      "creator_nickname": "sample_user_1",
      "date_created": "2026-03-20T10:15:30.000000Z",
      "folder_permission_type": "superuser",
      "is_owner_or_admin": true,
      "is_locked": false,
      "is_public": false,
      "last_accessed": "2026-03-25T08:10:00.000000Z",
      "name": "Sample Folder 1",
      "organization": "a1b2c3d4-5e6f-4a7b-9c8d-1e2f3a4b5c6d",
      "organization_name": "Sample Organization",
      "uuid": "f1e2d3c4-b5a6-4d7e-9c8b-1a2f3e4d5c6b"
    },
    {
      "banner_file_thumbnail_url": "https://example.com/thumbnail2.jpg",
      "creator_name": "user_67890",
      "creator_nickname": "sample_user_2",
      "date_created": "2026-03-22T12:00:00.000000Z",
      "folder_permission_type": "superuser",
      "is_owner_or_admin": true,
      "is_locked": false,
      "is_public": true,
      "last_accessed": "2026-03-26T09:30:00.000000Z",
      "name": "Sample Folder 2",
      "organization": "a1b2c3d4-5e6f-4a7b-9c8d-1e2f3a4b5c6d",
      "organization_name": "Sample Organization",
      "uuid": "e2f3a4b5-c6d7-4e8f-9a0b-2c3d4e5f6a7b"
    }
  ]
}

    • Related Articles

    • List assets (files) in folder

      In this article, you will learn how to list assets in folder. List assets (files) in folder Request Type: GET Header: Authorization: ApiKey <my_api_token> URL: https://app.banyanboard.com/api/folders/<my_folder_uuid>/assets/ Results: { "count": 2, ...
    • List statuses in organization

      In this article, you will learn how to list statuses in organization. List statuses in organization Request Type: GET Header: Authorization: ApiKey <my_api_token> URL: https://app.banyanboard.com/api/orgs/<my_org_uuid>/statuses/ Results: { "count": ...
    • List templates in organization

      In this article, you will learn how to list templates in organization. List templates in organization Request Type: GET Header: Authorization: ApiKey <my_api_token> URL: https://app.banyanboard.com/api/orgs/<my_org_uuid>/templates/ Results: { ...
    • List assets in organization

      In this article, you will learn how to list assets in organization. List assets in organization Request Type: GET Header: Authorization: ApiKey <my_api_token> URL: https://app.banyanboard.com/api/orgs/<my_org_uuid>/assets/ Results: { "results": [ { ...
    • List category members in organization

      In this article, you will learn how to list category members in organization. List category members in organization Request Type: GET Header: Authorization: ApiKey <my_api_token> URL: ...