List spaces the caller has access to. Default scope is 'member' (spaces the caller is a member of, including owned); 'owner' lists only spaces the caller owns.
Parameters
Output
Encoding
application/jsoncursor
string
Optional
No description available.
spaces
array
Required
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"spaces"
],
"properties": {
"cursor": {
"type": "string"
},
"spaces": {
"type": "array",
"items": {
"ref": "rsvp.atmo.space.defs#spaceView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"type": {
"type": "string",
"format": "nsid"
},
"limit": {
"type": "integer",
"default": 50,
"maximum": 200,
"minimum": 1
},
"scope": {
"type": "string",
"default": "member",
"knownValues": [
"member",
"owner"
]
},
"cursor": {
"type": "string"
}
}
},
"description": "List spaces the caller has access to. Default scope is 'member' (spaces the caller is a member of, including owned); 'owner' lists only spaces the caller owns."
}