Update a workspace
PUT
/workspaces/{workspace_gid}
Workspaces
Currently the only field that can be modified for a workspace is its name.
Returns the complete, updated workspace record.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://app.asana.com/api/1.0/workspaces/' \
--header 'Content-Type: application/json' \
--data-raw '{
"data": {
"name": "My Company Workspace"
}
}'
Response Response Example
200 - Example 1
{
"data": {
"gid": "12345",
"resource_type": "task",
"name": "My Company Workspace",
"email_domains": [
"asana.com"
],
"is_organization": false
}
}
Request
Path Params
workspace_gid
string
required
Body Params application/json
Responses
Modified at 2022-09-13 02:00:32