Skip to content
qibdo qibdo
Theme
Book a demo

Errors

Every Taxonomy error carries a stable numeric error_code and a machine-readable reason. This page lists the logical (domain) error codes Taxonomy can return. For the full error envelope (the google.rpc.Status shape, the reason and metadata fields, and how codes are structured) see Errors.

Taxonomy codes begin with 7 (for example 7301001, read as 7_301_001: service, group, specific error). The wire value is always the flat integer; you can match on either error_code or reason, both are stable.

The Status column is the canonical gRPC status the error maps to, which the gateway renders as the matching HTTP status (see the status codes table).

CodeReasonStatusDescription
7301001ORGANISATION_NAME_IS_BLANKINVALID_ARGUMENTOrganisation name must not be blank.
7301002ORGANISATION_OWNER_USER_ID_IS_BLANKINVALID_ARGUMENTOrganisation owner_user_id must not be blank.
7301003ORGANISATION_HAS_CHILDRENINVALID_ARGUMENTOrganisation cannot be deleted because it has children.
7301004ORGANISATION_NAME_TOO_LONGINVALID_ARGUMENTOrganisation name must not exceed 128 characters.
7302001GROUP_NAME_IS_BLANKINVALID_ARGUMENTGroup name must not be blank.
7302002GROUP_ORGANISATION_ID_NOT_VALIDINVALID_ARGUMENTGroup organisation ID is required and must be a valid ID.
7302003GROUP_SELF_PARENTINGINVALID_ARGUMENTA group cannot be its own parent.
7302004GROUP_CYCLE_DETECTEDINVALID_ARGUMENTMoving this group would create a cycle in the hierarchy.
7302005GROUP_MAX_DEPTH_EXCEEDEDINVALID_ARGUMENTGroup nesting exceeds the maximum allowed depth.
7302006GROUP_HAS_CHILDRENINVALID_ARGUMENTGroup cannot be deleted because it has children.
7302007GROUP_NAME_TOO_LONGINVALID_ARGUMENTGroup name must not exceed 128 characters.
7303001WORKSPACE_NAME_IS_BLANKINVALID_ARGUMENTWorkspace name must not be blank.
7303002WORKSPACE_ORGANISATION_ID_NOT_VALIDINVALID_ARGUMENTWorkspace organisation ID is required and must be a valid ID.
7303003WORKSPACE_GROUP_ID_NOT_VALIDINVALID_ARGUMENTWorkspace group ID is not a valid identifier.
7303004WORKSPACE_NAME_TOO_LONGINVALID_ARGUMENTWorkspace name must not exceed 128 characters.
7304001OPERATION_PROGRESS_OUT_OF_RANGEINVALID_ARGUMENTOperation progress must be between 0 and 100 inclusive.
7304002OPERATION_END_TIME_BEFORE_START_TIMEINVALID_ARGUMENTOperation end time must not be before start time.