Update a workspace
Updates a workspace. Only the name is required.
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}
$seatsioClient->workspaces->update($key, "a workspace");
await Client.Workspaces.UpdateAsync(key, "a workspace);
client.workspaces.update(key, "a workspace");
client.workspaces.update(key, "a workspace")
client.workspaces.update key: key, name: "a workspace"
await client.workspaces.update(key, 'a workspace');
err = client.Workspaces.Update(workspace.Key, "New name")
{
"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/18725661-36d6-4755-905a-28ce82d0c2d5 \
-u anAdminKey: -X POST -H 'Content-Type: application/json' -d '{"name": "a workspace"}'
Response
204 - No Content