We are trying to improvise our Error handling for Bulk Import of Users. I understand we can check the status of a import job and check Errors if any using “/api/v2/jobs/<job_id>/errors”. But Is there any documentation to get all the Error “codes” expected in Bulk import user.
“DUPLICATE_USER” is one example
“errors”: [
{
“code”: “DUPLICATED_USER”,
“message”: “A user with this [email|username|user_id] was already provided.”
}
while “INVALID_FORMAT” is another.
“errors”: [
{
“code”: “INVALID_FORMAT”,
“message”: “Error in identities[0].profileData.email property - Object didn’t pass validation for format email: akshay144@”,
“path”: “identities[0].profileData.email”
}
I am looking for a documentation to get a list of all of them.