# social.colibri.beta.community.undismissApplication

> Published by [colibri.social](https://lexicon.garden/identity/did:plc:mprdjqjluoswa7awzggaggj3)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:mprdjqjluoswa7awzggaggj3/social.colibri.beta.community.undismissApplication)
- [Documentation](https://lexicon.garden/lexicon/did:plc:mprdjqjluoswa7awzggaggj3/social.colibri.beta.community.undismissApplication/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:mprdjqjluoswa7awzggaggj3/social.colibri.beta.community.undismissApplication/examples)

## Definitions

### `social.colibri.beta.community.undismissApplication`

**Type**: `procedure`

Restores a dismissed application to the active queue. This is an AppView-local change and is never written to the community's repo.

#### Input

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `subject` | `string` (did) | Yes | The applicant whose application to restore. |
| `community` | `string` (did) | Yes | The community the application belongs to. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|

#### 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.
- **ApplicationNotFound**: No pending application exists for the subject in this community.

## Raw Schema

```json
{
  "id": "social.colibri.beta.community.undismissApplication",
  "defs": {
    "main": {
      "type": "procedure",
      "input": {
        "schema": {
          "type": "object",
          "required": [
            "community",
            "subject"
          ],
          "properties": {
            "subject": {
              "type": "string",
              "format": "did",
              "description": "The applicant whose application to restore."
            },
            "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": "Restores a dismissed application to the active queue. This is an AppView-local change and is never written to the community's repo."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
