About failed records of summary ( /api/v2/jobs/users-imports)

@dan.woda

Thank you for the information.
I understand that the list of “HTTP status code” is described here.

However, what I would like to know is about all possible errors (codes and messages) in failed records as a result of “users-imports job” being executed.
Sorry for the unclear explanation.

I can get the details of failed records in “/api/v2/jobs/{id}/errors”.
For example, we have confirmed that the following will be returned.

I would like to know all kinds of codes and messages that Auth0 might return.
If there is a document about it, it would be greatly appreciated if we can have the URL.

[
  {
    "user": {
      "email": "*****@*****",
      "email_verified": true,
    },
    "errors": [
      {
        "code": "DUPLICATED_USER",
        "message": "The user already exist and upsert parameter is false"
      }
    ]
  }
]

Thanks,
Makoto