Skip to content

already_exists

HTTP status: 409 Conflict

  1. Use a different name or identifier. Workflow names, schedule names, API key names, and integration output names are unique per-org. Pick a different value.
  2. Load the existing record via GET /api/v1/<resource>?name=... to confirm whether the duplicate is yours (a retry succeeding twice) or a teammate's resource.
  3. If you're retrying after a network blip, treat the duplicate as success — your first attempt likely landed. The CLI does this automatically; bare HTTP clients need to handle it.
  4. For workflows specifically, consider versioning the name (my-workflow-v2) rather than reusing identifiers across iterations. Old versions stay queryable by ID.

Your write conflicts with an existing record under the same unique key. We use 409 (not 400) because the request was syntactically fine — the conflict is with persistent state, not the input. This is a specific case of conflict.

Contact support with your request_id (looks like req_01HF3JKB...). We'll surface the conflicting record.