cURL
curl --request PUT \ --url https://forgegames.org/api/spaces/{id} \ --header 'Authorization: Basic <encoded-value>' \ --header 'Content-Type: application/json' \ --data '{ "name": "<string>", "cols": 123, "rows": 123 }'
{ "id": "<string>", "name": "<string>", "cols": 123, "rows": 123, "createdAt": "<string>", "updatedAt": "<string>", "teamId": "<string>" }
Updates an existing space’s properties.
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
Successful response
The response is of type object.
object