Skip to content

target_allocation_already_exists โ€‹

target_allocation_already_exists

Description โ€‹

A target allocation with the same stored ID already exists.

HTTP Status โ€‹

409 Conflict

doc_url Format โ€‹

The doc_url value is an absolute URL and changes by environment:

<docs-base-url>/errors/target_allocation_already_exists

Typical Causes โ€‹

  • The create command was retried after a partial success.
  • The same write was processed more than once.
  • An unexpected ID collision happened during persistence.

Example โ€‹

Response:

json
{
  "errors": [
    {
      "code": "target_allocation_already_exists",
      "message": "Target allocation already exists",
      "doc_url": "https://docs.example.com/errors/target_allocation_already_exists"
    }
  ]
}

How To Fix โ€‹

  1. Check whether the target allocation was already created.
  2. Reuse the existing resource if the request was retried.
  3. Investigate duplicate processing if this happens unexpectedly.