Skip to main content

Create a workspace

Creates a workspace. Only the name is required.

Note

As of 18/09/2025, Seats.io supports sandbox environments. Test workspaces, denoted by isTest: true, are encouraged to be migrated to use sandboxes which can be done directly on https://app.seats.io.

POST https://api-{region}.seatsio.net/workspaces
{
"name": "a workspace",
}
  • name: the name of the workspace. Can be any string (including spaces or special characters)
curl -X POST https://api-{region}.seatsio.net/workspaces \
-u anAdminKey: -X POST -H 'Content-Type: application/json' -d '{"name": "a workspace"}'
{
"id": 169,
"name": "a workspace",
"key": "18725661-36d6-4755-905a-28ce82d0c2d5",
"secretKey": "7c647eed-0880-4118-9459-82757579703e",
"isDefault": true,
"isTest": false,
"isActive": true
}