Returns the full state of a community: metadata, categories, channels, roles, and members.
Parameters
Output
Encoding
application/jsoncategories
array
Required
No description available.
channels
array
Required
No description available.
community
reflex:social.colibri.community.defs#communityInfo
Required
No description available.
did
stringdid
Required
A decentralized identifier (DID).
members
array
Required
No description available.
roles
array
Required
No description available.
Errors
InvalidRequest
A parameter or body field was missing or malformed. NotFound
The referenced record does not exist. Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "InvalidRequest",
"description": "A parameter or body field was missing or malformed."
},
{
"name": "NotFound",
"description": "The referenced record does not exist."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"community",
"categories",
"channels",
"roles",
"members",
"did"
],
"properties": {
"did": {
"type": "string",
"format": "did"
},
"roles": {
"type": "array",
"items": {
"ref": "lex:social.colibri.community.defs#roleView",
"type": "ref"
}
},
"members": {
"type": "array",
"items": {
"ref": "lex:social.colibri.community.defs#memberView",
"type": "ref"
}
},
"channels": {
"type": "array",
"items": {
"ref": "lex:social.colibri.community.defs#channelView",
"type": "ref"
}
},
"community": {
"ref": "lex:social.colibri.community.defs#communityInfo",
"type": "ref"
},
"categories": {
"type": "array",
"items": {
"ref": "lex:social.colibri.community.defs#categoryView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"community"
],
"properties": {
"community": {
"type": "string",
"format": "at-uri"
}
}
},
"description": "Returns the full state of a community: metadata, categories, channels, roles, and members."
}