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'
}
Static API Documentation
Create Report
Create a report to be sent to your dashboard.
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
string
Your API Key. (Keep this secret!)
string
Violator’s Name/Username.
string
URL of an image for evidence. (Optional)
string
Violation Reason.
string
Platform on which the violation took place. (E.g. Xbox, YouTube, Minecraft)
Response
number
Status code of API call.
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'
}
Was this page helpful?
