> For the complete documentation index, see [llms.txt](https://docs.deltastream.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.deltastream.io/reference/sql-syntax/command/reject-invitation.md).

# REJECT INVITATION

## Syntax <a href="#synopsis" id="synopsis"></a>

```sql
REJECT INVITATION invitation_id;
```

## Description <a href="#description" id="description"></a>

This command rejects an invitation that was sent to the current [Access Control](/overview/core-concepts/access-control.md#user) to join an [Access Control](/overview/core-concepts/access-control.md#organiation).

You can list pending user invitations with [LIST INVITATIONS](/reference/sql-syntax/command/list-invitations.md).

### Arguments

#### invitation\_id

Specifies the `id` of the invitation to reject.

## Examples <a href="#example" id="example"></a>

```sh
<no-organization># LIST MY INVITATIONS;
+--------------------------------------+------------+-------------------------------------+
|  ID                                  |  Org Name  |  Invited By                         |
+======================================+============+=====================================+
| 19cded99-3014-431b-905c-a25354ea011c | test       | team_manager@deltastream.io         |
+--------------------------------------+------------+-------------------------------------+
<no-organization># REJECT INVITATION 19cded99-3014-431b-905c-a25354ea011c;
+------------+--------------------------------------+------------+------------------------------------------+
|  Type      |  Name                                |  Command   |  Summary                                 |
+============+======================================+============+==========================================+
| invitation | 19cded99-3014-431b-905c-a25354ea011c | UPDATE     | invitation to join organization          |
|            |                                      |            | "d39511ce-c918-4637-9524-163183452274"   |
|            |                                      |            | was rejected                             |
+------------+--------------------------------------+------------+------------------------------------------+
```
