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

  1. Query before create to avoid duplicates.
  2. Use idempotent create patterns where possible.
  3. 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"
    }
  ]
}

On this page