v1
latestOpenAPI 3.0.22026-07-174950145.6 KBManage Spaces
List spaces
Lists the spaces, which the current authenticated user has access to.
get/spaces
Query parameters
contentUpdatedAtstring
Additional space filter which compares the space's contentUpdatedAt timestamp with the one specified in the query, resulting in a subset of spaces. The format should follow the specification below
- ?contentUpdatedAt=timestamp
The available operators are:
- ">=" or "=gte=" - greater than or equals
- "<=" or "=lte=" - less than or equals
- ">" or "=gt=" - greater than
- "<" or "=lt=" - less than
includeConnectorsboolean
If set to true, the connectors for each space are included in the response.
includeRightsboolean
If set to true, the access rights for each space are included in the response.
ownerstring
Define the owner(s) of spaces to be shown in the response. Possible values are:
- me (The default value; Show only the spaces being owned by the current user),
- (someOwnerId) (Only for shared spaces: Explicitly only show spaces belonging to the specified user),
- others (Show only the spaces having been shared excluding the own ones),
- * (Show all spaces the current user has access to)
tagstring
Filter for spaces with the given tag.
regionstring
Filter for spaces with the given region.
Response
A list of spaces.
Example response
[
{
"title": "My Demo Space",
"description": "Description as markdown"
}
]