BreadPayPlatformPaymentOption

Personalized Bread Pay payment option (SplitPay, Installments, or Card) returned for a buyer context.

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
productType string
termMonths integer
apr number
monthlyPayment object
View JSON Schema on GitHub

JSON Schema

bread-pay-platform-payment-option-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-payment-option-schema.json",
  "title": "BreadPayPlatformPaymentOption",
  "description": "Personalized Bread Pay payment option (SplitPay, Installments, or Card) returned for a buyer context.",
  "type": "object",
  "properties": {
    "id": { "type": "string" },
    "productType": {
      "type": "string",
      "enum": ["SPLIT_PAY", "INSTALLMENTS", "CARD"]
    },
    "termMonths": { "type": "integer" },
    "apr": { "type": "number" },
    "monthlyPayment": {
      "$ref": "bread-pay-platform-amount-schema.json"
    }
  }
}