Person Reason Codes
Understand why a person failed customer identification.
Status Reasons
If a person fails customer identification, Orum sends a person_rejected
or person_restricted
webhook. The person object in the webhook will have a status of rejected
or restricted
and a status_reasons array that explains why the person failed customer identification.
Status Reasons contain:
-
reason_code
: a word-based code that describes the customer identification failure -
reason_code_message
: a friendly description of the reason code that can be surfaced directly to your end users
To reattempt customer identification, you can use the PATCH /persons endpoint to update any invalid or missing information.
status_reasons
will also be present in the GET /persons and GET /persons/{id} API responses.
reason_code | reason_code_message |
---|---|
deceased_person | User is reported as deceased |
incomplete_address | Address submitted is missing some or all required elements |
incomplete_dob | Date of birth submitted is missing some or all required elements |
incomplete_ssn | SSN submitted is missing some or all required elements |
ineligible_age | Age submitted is under 18 and not eligible for this product |
invalid_address_type | Address submitted is a non-supported address type |
invalid_dob | Date of birth is invalid |
invalid_name | Name is invalid |
invalid_ssn | SSN is invalid |
matched_alertlist | Matched a list of known fraudulent users |
matched_watchlist | Matched one or multiple sanctions lists |
Webhook Example
Deliver sends webhooks to notify you of changes to a person’s status.
Was this page helpful?