POST
/
api
/
report
      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)
        })
      })
{
  code: 200,
  msg: 'Success'
}

Body

apiKey
string

Your API Key. (Keep this secret!)

user
string

Violator’s Name/Username.

imgURL
string

URL of an image for evidence. (Optional)

reason
string

Violation Reason.

device
string

Platform on which the violation took place. (E.g. Xbox, YouTube, Minecraft)

Response

code
number

Status code of API call.

msg
string

Error/Success Message.

      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)
        })
      })
{
  code: 200,
  msg: 'Success'
}