GET
/
workspaces
/
{id}
curl --request GET \
  --url https://api.tally.so/workspaces/{id} \
  --header 'Authorization: Bearer <token>'
{
  "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"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The ID of the workspace to retrieve

Response

200
application/json

Workspace retrieved successfully

The response is of type object.