JeriCommerce Public API
API Status
API Status
  1. Customers
  • API Integration
    • Create/Update resources
      POST
    • Delete resources
      DELETE
  • Customers
    • Get customer details by email
      GET
    • Get a customer token
      GET
    • Redeem a reward
      POST
    • Assign a coupon
      POST
    • Increase balance
      POST
    • Decrease balance
      POST
API Status
API Status
  1. Customers

Get customer details by email

Entorno producci贸n
https://api.jericommerce.com
Entorno producci贸n
https://api.jericommerce.com
GET
/v1/programs/{programId}/customers/{email}
Last modified:2026-02-09 11:25:59

Request

Authorization
API Key
Add parameter in header
api-key
Example:
api-key: ********************
or
Path Params

Responses

馃煝200
application/json
Body

Request Request Example
Shell
JavaScript
Swift
PHP
curl --location --request GET 'https://api.jericommerce.com/v1/programs//customers/' \
--header 'api-key: <api-key>'
Response Response Example
{
    "id": "string",
    "programId": "string",
    "email": "string",
    "origin": "API",
    "referral": "string",
    "utmCampaign": "string",
    "utmSource": "string",
    "utmMedium": "string",
    "balanceNotifications": true,
    "tierNotifications": true,
    "rewardAvailableNotifications": true,
    "locationNotifications": true,
    "marketingNotifications": true,
    "referralEarned": true,
    "createdAt": "string",
    "updatedAt": "string",
    "userData": {
        "id": "string",
        "customerId": "string",
        "externalCustomerId": "string",
        "firstName": "string",
        "lastName": "string",
        "phone": "string",
        "emailVerified": true,
        "createdAt": "string",
        "updatedAt": "string"
    },
    "loyaltyData": {
        "id": "string",
        "customerId": "string",
        "loyaltyCustomerId": "string",
        "balance": 0,
        "memberSince": "string",
        "tierStatus": "string",
        "referralLink": "string",
        "createdAt": "string",
        "updatedAt": "string"
    },
    "customerTier": {
        "id": "string",
        "customerId": "string",
        "currentTierId": "string",
        "carryTierId": "string",
        "currentTierPoints": 0,
        "carryTierPoints": 0,
        "tierChangedAt": "string",
        "recalculationDate": "string"
    }
}
Modified at聽2026-02-09 11:25:59
Previous
Delete resources
Next
Get a customer token
Built with