Getting started
Organizations
Forms
Workspaces
Workspaces
Creating workspaces
Creates a new workspace and assigns the authenticated user as a member. Requires a Pro subscription.
POST
/
workspaces
curl --request POST \
--url https://api.tally.so/workspaces \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>"
}'
{
"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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
201
application/json
Workspace created successfully
The response is of type object
.
curl --request POST \
--url https://api.tally.so/workspaces \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>"
}'
{
"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"
}
Assistant
Responses are generated using AI and may contain mistakes.