The authenticated account's own Community memberships. Defaults to active and muted memberships.
Parameters
Output
Encoding
application/jsoncommunities
array
Required
No description available.
cursor
string
Optional
No description available.
Errors
InvalidCursor
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "InvalidCursor"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"communities"
],
"properties": {
"cursor": {
"type": "string"
},
"communities": {
"type": "array",
"items": {
"ref": "com.getorbyt.community.defs#view",
"type": "ref"
},
"maxLength": 50
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 25,
"maximum": 50,
"minimum": 1
},
"cursor": {
"type": "string"
},
"status": {
"type": "string",
"knownValues": [
"active",
"muted",
"banned"
]
}
}
},
"description": "The authenticated account's own Community memberships. Defaults to active and muted memberships."
}