Hides a pending application from the active queue without refusing it. This is an AppView-local change and is never written to the community's repo.
Input
Encoding
application/jsoncommunity
stringdid
Required
The community the application belongs to.
subject
stringdid
Required
The applicant whose application to dismiss.
Output
Encoding
application/jsonErrors
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. ApplicationNotFound
No pending application exists for the subject in this community. Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"community",
"subject"
],
"properties": {
"subject": {
"type": "string",
"format": "did",
"description": "The applicant whose application to dismiss."
},
"community": {
"type": "string",
"format": "did",
"description": "The community the application belongs to."
}
}
},
"encoding": "application/json"
},
"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."
},
{
"name": "ApplicationNotFound",
"description": "No pending application exists for the subject in this community."
}
],
"output": {
"schema": {
"type": "object",
"properties": {}
},
"encoding": "application/json"
},
"description": "Hides a pending application from the active queue without refusing it. This is an AppView-local change and is never written to the community's repo."
}