> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zymono.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Create Report

> Create a report to be sent to your dashboard.

### Body

<ParamField body="apiKey" type="string">
  Your API Key. (Keep this secret!)
</ParamField>

<ParamField body="user" type="string">
  Violator's Name/Username.
</ParamField>

<ParamField body="imgURL" type="string">
  URL of an image for evidence. (Optional)
</ParamField>

<ParamField body="reason" type="string">
  Violation Reason.
</ParamField>

<ParamField body="device" type="string">
  Platform on which the violation took place. (E.g. Xbox, YouTube, Minecraft)
</ParamField>

### Response

<ResponseField name="code" type="number">
  Status code of API call.
</ResponseField>

<ResponseField name="msg" type="string">
  Error/Success Message.
</ResponseField>

<RequestExample>
  ```js Example Request theme={null}
        fetch('//zymono.com/api/report', {
          method: 'POST',
          headers: {
           'Content-Type': 'application/json'
          },
          body: JSON.stringify({
            apiKey: '', //API Key from https://zymono.com/api/
            user: '', //User being reported
            imgURL: '', //Url of an image for evidence (You can leave this blank)
            reason: '', //Reason for report
            device: '' //Platform (E.g. Minecraft, Xbox, Discord, etc)
          })
        })
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    code: 200,
    msg: 'Success'
  }
  ```
</ResponseExample>
