Delete a specific storage item using its unique identifier.
Authorization
Bearer token for authentication. Format: Bearer <your-api-key>
Required Permission
STORAGE_WRITE
Path Parameters
UUID of the file to delete
Response
Success message confirming deletion
curl -X DELETE "https://api.nonefivem.com/cloud/storage/550e8400-e29b-41d4-a716-446655440000" \
-H "Authorization: Bearer your-api-key"
{
"message": "Item deleted successfully"
}
This action is irreversible. The file and its CDN URL will be permanently
removed.
Error Responses
{
"error": {
"code": "NOT_FOUND",
"message": "Storage item not found"
}
}
{
"error": {
"code": "INVALID_UUID",
"message": "Invalid file ID format"
}
}