GET
/
workspaces
Retrieve a list of workspaces
curl --request GET \
  --url https://api.tally.so/workspaces \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "name": "<string>",
      "members": [
        {
          "id": "<string>",
          "firstName": "<string>",
          "lastName": "<string>",
          "fullName": "<string>",
          "email": "<string>",
          "avatarUrl": "<string>",
          "organizationId": "<string>",
          "isDeleted": true,
          "hasTwoFactorEnabled": true,
          "createdAt": "2023-11-07T05:31:56Z",
          "updatedAt": "2023-11-07T05:31:56Z",
          "subscriptionPlan": "FREE"
        }
      ],
      "invites": [
        {
          "id": "<string>",
          "email": "<string>",
          "workspaceIds": [
            "<string>"
          ]
        }
      ],
      "createdByUserId": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "page": 123,
  "limit": 123,
  "total": 123,
  "hasMore": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
number

Page number for pagination (default: 1)

Response

A paginated list of workspaces

items
object[]
required
page
number
required

Current page number

limit
number
required

Number of items per page

total
number
required

Total number of items

hasMore
boolean
required

Whether there are more pages available