BreadPayPlatformBuyer

Bread Pay Platform buyer record used to personalize payment options and pricing.

Financial ServicesFintechBuy Now Pay LaterBNPLBread PayPrivate Label CreditCo Brand Credit CardsLoyalty ProgramsMarketingData Driven MarketingPaymentsLendingSavingsPersonal LoansConsumer BankingRetail FinanceFortune 500NYSE BFHComenity BankRebrand

Properties

Name Type Description
id string
givenName string
familyName string
email string
phone string
billingAddress object
shippingAddress object
View JSON Schema on GitHub

JSON Schema

bread-pay-platform-buyer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/alliance-data-systems/main/json-schema/bread-pay-platform-buyer-schema.json",
  "title": "BreadPayPlatformBuyer",
  "description": "Bread Pay Platform buyer record used to personalize payment options and pricing.",
  "type": "object",
  "required": ["id"],
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "givenName": {
      "type": "string"
    },
    "familyName": {
      "type": "string"
    },
    "email": {
      "type": "string",
      "format": "email"
    },
    "phone": {
      "type": "string"
    },
    "billingAddress": {
      "$ref": "bread-pay-platform-address-schema.json"
    },
    "shippingAddress": {
      "$ref": "bread-pay-platform-address-schema.json"
    }
  }
}