> 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/015_account/006__create_support_request.md).

# Create Support Request

GraphQL endpoint: `/user`

Submits a support request with the caller's message and a reply-to email address, to be handled by the support team.

## Query

```graphql
mutation (
  $email: String!
  $message: String!
) {
  createSupportRequest (
    email: $email
    message: $message
  ) {
    status
  }
}

```

## Variables

```json
{
  "email": "test1@email.com",
  "message": "I need help with something"
}
```

## Response

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