Error Reference
RESOURCE_ALREADY_EXISTS
The request conflicts with an existing resource.
This error means the operation attempted to create a duplicate or conflicting object.
Typical causes
- Duplicate creation request
- Unique key conflict
- Resource already initialized
How to fix
- Query before create to avoid duplicates.
- Use idempotent create patterns where possible.
- Update existing resources instead of creating a new one.
Example
{
"errors": [
{
"message": "Resource already exists",
"code": "RESOURCE_ALREADY_EXISTS",
"documentation": "https://developers.rad.live/docs/errors/resource_already_exists"
}
]
}