curl --request POST \
--url https://backend.blox.report/v1/reports/new \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"userId": "<string>",
"answers": [
{
"questionId": "<string>",
"answer": "<string>"
}
],
"evidence": [
{
"url": "<string>",
"type": "url",
"createEvidence": true
}
],
"reporter": {
"id": "<string>",
"platform": "roblox"
},
"reportType": "api"
}
'