cURL
curl --request PUT \ --url {protocol}://{domain}/api/v1/spaces/{spaceId} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "name": "<string>", "description": "<string>" }'
{ "id": "<string>", "name": "<string>", "description": "<string>", "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z", "userId": "<string>" }
Update space name and/or description
Bearer token authentication supports:
Example: Authorization: Bearer your_token_here
Authorization: Bearer your_token_here
Space identifier
Space updated successfully
The response is of type object.
object
Was this page helpful?