Report
Generate signed URLs for uploading content reports (requires authentication).
Generate a pre-signed S3 URL for uploading content reports. Requires authentication.
Use Case: Users can report inappropriate content or issues. This endpoint provides a secure upload URL that expires after 60 seconds.
Process:
Call this endpoint to get a signed URL
PUT your report JSON directly to the signed URL
Report is stored privately for moderation review
Security: The signed URL is temporary and scoped to the authenticated user.
Authorizations
AuthorizationstringRequired
Decentraland authentication token obtained from the Decentraland SDK or auth services.
To authenticate:
- Use Decentraland's authentication SDK in your application
- Get the auth token from the SDK
- Include in requests:
Authorization: Bearer <token>
Responses
200
Signed URL generated successfully
application/json
401
Unauthorized - Missing or invalid authentication token
application/json
post
/reportLast updated