...
This endpoint allows you to verify a Customer using one of the four available verification methods, depending on the "format" specified in the body.
This is used for the in-store channel only.
Request Parameters:
Type | Parameter | Required | Details |
---|---|---|---|
HEADER | authorization | Yes |
|
HEADER | x-reference-id | Yes |
|
PATH | client_id | Yes |
|
PATH | account_number | Yes |
|
BODY | format | Yes |
|
BODY | security_qid | Required for format: security_question |
|
BODY | security_answer | Required for format: security_question |
|
BODY | request_id | Yes for in-store channel |
|
...
Code Block | ||
---|---|---|
| ||
{
"format": "security_question",
"security_qid": "6",
"security_answer": "Rainbow",
"request_id": "12345678901234567890", //if in-store channel
} |
Success Responses:
200 - Success - security_question
...