👥Get Shopper Information
Quickly check if a customer is a registered PayLater shopper. This tool returns their shopper status along with their assigned credit limit and available balance—perfect for verifying eligibility before proceeding with a transaction.
Endpoint
Sandbox
GET https://connect-sandbox.paylaterapp.com/api/paylater/merchant-portal/web-checkout/shopper
Production
GET https://connect.paylaterapp.com/api/paylater/merchant-portal/web-checkout/shopper 
Headers
- x-api-key: Your API key (Required)
Query Parameters
merchantId
String
✅
Your merchant ID
mobileNumber
String
✅
Shopper's mobile number
String
✅
Shopper's email address
Sample Success Response
{
  "shopperId": "uuid",
  "email": "test@sample.com",
  "mobileNumber": "97412345678",
  "currentSpendingLimit": 925.0,
  "allowedSpendingLimit": 4000.0
}Error Responses
{
  "message": "Shopper not found"
}
{
  "message": "Missing API key in request headers"
}Last updated
