...
Code Block |
---|
https://{posapi_url}/flexiti/pos-api/v2.5/client-id/flexitidemo{client_id}/customers/search?first_name=John&last_name=Smith&dob=1900-01-01 |
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 Flexiti Operations
...
Charged Off “Z” - When accounts do not pay for 6 or more months, the account is written off the Portfolio.
...
-01 |
This Endpoint returns a list of accounts for the customer being searched for.
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 |
|
...
Code Block |
---|
https://{posapi_url}/flexiti/pos-api/v2.5/client-id/flexitidemo{client_id}/customers/lookup?vcc_number=1234123412341234 |
...
Code Block |
---|
https://{posapi_url}/flexiti/pos-api/v2.5/client-id/flexitidemo{client_id}/customers/lookup?account_number=123456789 |
...
Code Block |
---|
https://{posapi_url}/flexiti/pos-api/v2.5/client-id/flexitidemo{client_id}/customers/lookup?customer_id=123456789 |
...
Code Block | ||
---|---|---|
| ||
https://{posapi_url}/flexiti/pos-api/v2.5/client-id/flexitidemo{client_id}/account/12345678/verify |
This endpoint allows you to verify a Customer using one of the four available verification methods, depending on the "format" specified in the body.
...
Code Block | ||
---|---|---|
| ||
{ "format": "security_question", "security_qid": "6", "security_answer": "ToolRainbow" } |
Success Responses:
200 - Success - Override
...
Code Block |
---|
https://{posapi_url}/flexiti/pos-api/v2.5/client-id/flexitidemo{client_id}/customers/driverslicense |
...
Code Block |
---|
https://{posapi_url}/flexiti/pos-api/v2.5/client-id/flexitidemo{client_id}/accounts/12345/close |
This endpoint allows the closure of a QC account.
...
Code Block |
---|
https://{posapi_url}/flexiti/pos-api/v2.5/client-id/flexitidemo{client_id}/accounts/12345/calculate-interest |
...