I’m trying to import a user via the bulk importing job endpoint. The user file contains the following information. The job fails with the following error message, which does not describe the issue.
User upload file contents (hash value redacted)
[
{
"email": "johndoe@example.com,
"email_verified": true,
"custom_password_hash": {
"algorithm": "md5",
"hash": {
"value": "*****,
"encoding": "base64"
}
}
}
]
Error returned from /api/v2/jobs/<job_id>/errors
"code": "ONE_OF_MISSING",
"message": "",
"path": "custom_password_hash"
Any ideas what the problem might be?