Update Workspace
Update workspace metadata. **Admin permission required.** Fields not present are left unchanged. Slug is immutable — renaming only changes the display name.
PATCH
/api/v1/workspaces/{id}Authorization
apiKey X-API-Key<token>
Your Recall API key (personal or workspace). Generate one from the Recall dashboard under Settings > API Keys.
In: header
Path Parameters
id*string
Workspace ID.
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
curl -X PATCH \ "https://tryrecall.com/api/v1/workspaces/wsp_abc123" \ -H "X-API-Key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "name": "Engineering (renamed)", "color": "#FF0000" }'{
"success": true,
"data": {
"workspace": {
"id": "wsp_abc123",
"name": "Engineering",
"slug": "engin3r2",
"color": "#3972F6",
"ownerId": "string",
"organizationId": "string",
"billedAccountUserId": "string",
"allowPersonalApiKeys": true,
"role": "admin",
"createdAt": "2019-08-24T14:15:22Z",
"updatedAt": "2019-08-24T14:15:22Z",
"archivedAt": "2019-08-24T14:15:22Z"
}
}
}Empty
{
"error": "string"
}Empty
Empty
{
"error": "string"
}