Activate workspace
Workspaces are either active or inactive. All API calls on inactive workspaces fail (except for the one that activates the workspace again). That includes creating charts, creating events and booking seats. An inactive workspace is completely disabled.
The call that lists workspaces returns both active and inactive ones.
Note
You need to authenticate with your company admin key for this API call.
- Text
- PHP
- C#
- Java
- Python
- Ruby
- Javascript
- Go
POST https://api-{region}.seatsio.net/workspaces/{key}/actions/activate
$seatsioClient->workspaces->activate($key);
await Client.Workspaces.ActivateAsync(key);
client.workspaces.activate(key);
client.workspaces.activate(key)
client.workspaces.activate key: key
await client.workspaces.activate(key);
err = client.Workspaces.Activate(workspace.Key)
curl -X POST https://api-{region}.seatsio.net/workspaces/18725661-36d6-4755-905a-28ce82d0c2d5/actions/activate \
-u anAdminKey: -X POST
Response
204 - No Content