GET
/
api
/
v1
/
spaces
/
{spaceId}
Get Space Details
curl --request GET \
  --url {protocol}://{domain}/api/v1/spaces/{spaceId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "userId": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer token authentication supports:

  • Personal API tokens (PATs)
  • OAuth2 access tokens
  • JWT tokens

Example: Authorization: Bearer your_token_here

Path Parameters

spaceId
string
required

Space identifier

Response

200
application/json

Space details

The response is of type object.