> ## Documentation Index
> Fetch the complete documentation index at: https://docs.seam.co/llms.txt
> Use this file to discover all available pages before exploring further.

# User Identity Errors and Warnings

> Errors and warnings that Seam reports on the User Identity resource, each with its code and meaning.

## Errors

Each error is an object with the following shape:

```json Example error theme={null}
{
  "error_code": "issue_with_acs_user",
  "message": "Indicates that there is an issue with an access system user associated with this user identity.",
  "created_at": "2025-01-01T00:00:00.000Z",
  "acs_system_id": "00000000-0000-0000-0000-000000000000",
  "acs_user_id": "00000000-0000-0000-0000-000000000000"
}
```

<Accordion title="Error object properties">
  <ResponseField name="error_code" type="Enum (String)">
    Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

    One of the error codes listed below.
  </ResponseField>

  <ResponseField name="message" type="String">
    Detailed description of the error. Provides insights into the issue and potentially how to rectify it.
  </ResponseField>

  <ResponseField name="created_at" type="String (ISO 8601)">
    Date and time at which Seam created the error.
  </ResponseField>

  <ResponseField name="acs_system_id" type="String (UUID)">
    ID of the access system that the user identity is associated with.
  </ResponseField>

  <ResponseField name="acs_user_id" type="String (UUID)">
    ID of the access system user that has an issue.
  </ResponseField>
</Accordion>

### `issue_with_acs_user`

Indicates that there is an issue with an access system user associated with this user identity.

***

## Warnings

Each warning is an object with the following shape:

```json Example warning theme={null}
{
  "warning_code": "being_deleted",
  "message": "Indicates that the user identity is currently being deleted.",
  "created_at": "2025-01-01T00:00:00.000Z"
}
```

<Accordion title="Warning object properties">
  <ResponseField name="warning_code" type="Enum (String)">
    Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.

    One of the warning codes listed below.
  </ResponseField>

  <ResponseField name="message" type="String">
    Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.
  </ResponseField>

  <ResponseField name="created_at" type="String (ISO 8601)">
    Date and time at which Seam created the warning.
  </ResponseField>
</Accordion>

### `acs_user_profile_does_not_match_user_identity`

Indicates that the ACS user's profile does not match the user identity's profile

***

### `being_deleted`

Indicates that the user identity is currently being deleted.

***
