Lists pending requests to join a community that requires approval.
Parameters
community
string
did
Required
The community to list applications for.
cursor
string
Optional
Pagination cursor from a previous response.
includeDismissed
boolean
Optional
Whether to include applications a moderator has hidden from the active queue.
limit
integer
Optional
Maximum number of applications to return.
Output
Encoding
application/jsonapplications
array
Required
Applications matching the request.
cursor
string
Optional
Pagination cursor for the next page, if more applications exist.
Errors
AuthRequired
The request is missing, malformed, or unverifiable service auth. Forbidden
The caller lacks the approval.manage permission. CommunityNotFound
No community exists at the given DID. Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "AuthRequired",
"description": "The request is missing, malformed, or unverifiable service auth."
},
{
"name": "Forbidden",
"description": "The caller lacks the approval.manage permission."
},
{
"name": "CommunityNotFound",
"description": "No community exists at the given DID."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"applications"
],
"properties": {
"cursor": {
"type": "string",
"description": "Pagination cursor for the next page, if more applications exist."
},
"applications": {
"type": "array",
"items": {
"ref": "social.colibri.beta.community.defs#applicationView",
"type": "ref",
"description": "A pending application."
},
"description": "Applications matching the request."
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"community"
],
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of applications to return."
},
"cursor": {
"type": "string",
"description": "Pagination cursor from a previous response."
},
"community": {
"type": "string",
"format": "did",
"description": "The community to list applications for."
},
"includeDismissed": {
"type": "boolean",
"default": false,
"description": "Whether to include applications a moderator has hidden from the active queue."
}
}
},
"description": "Lists pending requests to join a community that requires approval."
}