# chat.bsky.group.withdrawJoinRequest

> Published by [bsky-lexicons.bsky.social](https://lexicon.garden/identity/did:plc:4v4y5r3lwsbtmsxhile2ljac)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/chat.bsky.group.withdrawJoinRequest)
- [Documentation](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/chat.bsky.group.withdrawJoinRequest/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/chat.bsky.group.withdrawJoinRequest/examples)

## Definitions

### `chat.bsky.group.withdrawJoinRequest`

**Type**: `procedure`

Withdraws a pending request to join a group. Action taken by the prospective member who originally requested to join.

#### Input

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `convoId` | `string` | Yes |  |

#### Output

**Encoding**: `application/json`

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

#### Errors

- **InvalidJoinRequest**

## Raw Schema

```json
{
  "id": "chat.bsky.group.withdrawJoinRequest",
  "defs": {
    "main": {
      "type": "procedure",
      "input": {
        "schema": {
          "type": "object",
          "required": [
            "convoId"
          ],
          "properties": {
            "convoId": {
              "type": "string"
            }
          }
        },
        "encoding": "application/json"
      },
      "errors": [
        {
          "name": "InvalidJoinRequest"
        }
      ],
      "output": {
        "schema": {
          "type": "object",
          "required": [],
          "properties": {}
        },
        "encoding": "application/json"
      },
      "description": "Withdraws a pending request to join a group. Action taken by the prospective member who originally requested to join."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
