BreadClassicTransaction

Bread Classic (legacy) transaction object.

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
type string
status string
amount integer Amount in minor units.
currency string
merchantId string
createdAt string
View JSON Schema on GitHub

JSON Schema

bread-classic-transaction-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-classic-transaction-schema.json",
  "title": "BreadClassicTransaction",
  "description": "Bread Classic (legacy) transaction object.",
  "type": "object",
  "required": ["id", "status", "amount"],
  "properties": {
    "id": { "type": "string" },
    "type": { "type": "string" },
    "status": {
      "type": "string",
      "enum": ["PENDING", "AUTHORIZED", "SETTLED", "CANCELLED", "REFUNDED"]
    },
    "amount": {
      "type": "integer",
      "description": "Amount in minor units."
    },
    "currency": { "type": "string" },
    "merchantId": { "type": "string" },
    "createdAt": { "type": "string", "format": "date-time" }
  }
}