...
This Endpoint returns a list of accounts for the customer being searched for.
On the response you can be returned the following possible account statuses:
Normal “N” (only status that allows Customers to make Purchases/Authorizations)
Auth Prohibited “A” (Authorizations/Purchases are prohibited due to lack of payment, this status can be reverted automatically by the system)
Frozen “F” (Frozen accounts can NOT make Authorizations/Purchases, this status can only be reverted manually by Operations)
Charged Off “Z” (When accounts do not pay for 6 or more months, the account is written off the Portfolio)
Closed “C” (no longer in use, this represents accounts that are closed and can NOT be brought back to life, there are some old accounts with this status)
Request Parameters:
Type | Parameter | Required | Details |
---|---|---|---|
HEADER | bearer token | Yes |
|
PATH | client_id | Yes |
|
QUERY | first_name | Yes |
|
QUERY | last_name | Yes |
|
QUERY | dob | Yes |
|
...
Type | Parameter | Required | Details |
---|---|---|---|
BODY | customer_id |
| |
BODY | account_status |
| |
BODY | account_status_reason_code |
| |
BODY | tos_agreement |
| |
BODY | risk_rating |
| |
BODY | account_number |
| |
BODY | credit_limit |
| |
BODY | available_credit |
| |
BODY | originating_merchant_id |
| |
BODY | originating_merchant_name |
| |
BODY | creation_date |
| |
BODY | first_name |
| |
BODY | last_name |
| |
BODY | card_ending_in |
| |
BODY | preferred_language |
|
Success Response:
Code Block | ||
---|---|---|
| ||
[
{
"customer_id": "829825",
"account_status": "N",
"account_status_reason_code": "NNOR",
"tos_agreement"": true,
"risk_rating": "H",
"account_number": 116574819,
"credit_limit": "1000.00",
"available_credit": "659.51",
"originating_merchant_id": "11503",
"originating_merchant_name": "Paris Jewellers",
"creation_date": "2019-05-15",
"first_name": "David",
"last_name": "Morley",
"card_ending_in": "5941",
"preferred_language": "fr-CA"
},
{
"customer_id": "829875",
"account_status": "F",
"account_status_reason_code": "FLCK",
"tos": true,
"risk_rating": "Y",
"account_number": 116574860,
"credit_limit": "1000.00",
"available_credit": "847.00",
"originating_merchant_id": "11503",
"originating_merchant_name": "Paris Jewellers",
"creation_date": "2019-05-15",
"first_name": "David",
"last_name": "Morley",
"card_ending_in": "6457",
"preferred_language": "en-CA"
}
] |
GET /client-id/{client_id}/customers/lookup
...