Get Customer Profile

Qualify consumer to ascertain probability of successful delivery and apply fees to recoup delivery cost

This method sould be called before sending a reservation request.

Flag suspicious transactions, if current purchase value significantly higher than average purchase value for consumer criteria for closer inspection.


 

Definition

https://api.cashvaultng.com/stagmerce/GetCustomerProfile?


Parameters

Query Params
MobileNumber:
required
string

Mobile number of customer initiating purchase

Headers
ClientID:
required
string

Authentication Parameter

ClientSecretKey:
required
string

Authentication Parameter

Examples

Get Customer Profile

                            
                                https://api.cashvaultng.com/stagmerce/GetCustomerProfile?MobileNumber=08033407491
                            
                        

Result Format

200 Success 202 Insufficient Data

                                    
                                {
                                    "ResponseCode": "00",
                                    "ResponseDescription": "OK",
                                    "AvgPurchaseValue": 21154,
                                    "LastPurchase": "13days",
                                    "SuccessRate": "51%"
                                }
                                    
                                
                                    
                                {
                                    "ResponseCode": "09",
                                    "ResponseDescription": "Not enough data to profile user",
                                    "AvgPurchaseValue": 0,
                                    "LastPurchase": null,
                                    "SuccessRate": null
                                }