> For the complete documentation index, see [llms.txt](https://docs.tnid.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tnid.com/api-reference/001_user/014_forms/003__reject_form_submission_request.md).

# Reject Form Submission Request

GraphQL endpoint: `/user`

Rejects a form submission request that was sent to the calling user. The associated form instance is marked REJECTED and any data entered into it is cleared.

## Query

```graphql
mutation ($id: ID!) {
  rejectFormSubmissionRequest(id: $id) {
    status
  }
}

```

## Variables

```json
{
  "id": "00000000-0000-4000-8000-000000000001"
}
```

## Response

```json
{
  "data": {
    "rejectFormSubmissionRequest": {
      "status": "OK"
    }
  }
}
```
