Bread Financial Payment Agreement API

The Payment Agreement API from Bread Financial — 1 operation(s) for payment agreement.

Operations 1

POST /api/tradein/payment-agreement/link-payment-agreement Links a buyers old and new loan #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/bread-financial-payment-agreement-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

bread-financial-payment-agreement-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Tradein Payment Agreement API
  description: TradeIn is a service built to streamline and enhance the Upgrade/TradeIn feature for the Apple program
  version: 2.0.0
  contact:
    email: partnership-growth@getbread.com
servers:
- url: https://api-preview.platform.breadpayments.com/
  description: Preview environment
- url: https://api.platform.breadpayments.com/
  description: Production environment
tags:
- name: Payment Agreement
paths:
  /api/tradein/payment-agreement/link-payment-agreement:
    post:
      summary: Links a buyers old and new loan
      description: Links two payment agreements
      operationId: tradeinLinkPaymentAgreement
      requestBody:
        content:
          application/json:
            schema:
              type: object
              description: Tradein LinkedPaymentAgreement request
              required:
              - oldPaymentAgreementID
              - newPaymentAgreementID
              - upgradeDate
              properties:
                oldPaymentAgreementID:
                  description: the existing payment agreement ID to link
                  allOf:
                  - type: string
                    format: uuid
                    description: A universally unique identifier (Version 4) as defined in RFC4122. This does not allow nulls.
                    example: dc0dc633-1760-4d43-ba1d-da94ed701f06
                    externalDocs:
                      description: RFC4122
                      url: https://datatracker.ietf.org/doc/html/rfc4122.html
                newPaymentAgreementID:
                  description: the new payment agreement ID to link
                  allOf:
                  - type: string
                    format: uuid
                    description: A universally unique identifier (Version 4) as defined in RFC4122. This does not allow nulls.
                    example: dc0dc633-1760-4d43-ba1d-da94ed701f06
                    externalDocs:
                      description: RFC4122
                      url: https://datatracker.ietf.org/doc/html/rfc4122.html
                upgradeDate:
                  description: the timestamp of the device upgrade
                  allOf:
                  - type: string
                    format: date-time
                    description: The timestamp value formatted per RFC3339. This does not allow nulls.
                    example: '2020-12-31T15:10:55Z'
                    externalDocs:
                      description: RFC3339
                      url: https://datatracker.ietf.org/doc/html/rfc3339#section-5.6
        required: true
      tags:
      - Payment Agreement
      responses:
        '200':
          description: Tradein UpgradeElection response
          content:
            application/json:
              schema:
                type: object
                description: an object representing two payment agreements to link
                required:
                - message
                properties:
                  message:
                    description: Confirmation message agreements are linked
                    allOf:
                    - type: string
        '400':
          description: Tradein UpgradeElection error response
          content:
            application/json:
              schema:
                allOf:
                - required:
                  - code
                  - domain
                  - message
                  type: object
                  properties:
                    code:
                      type: integer
                      description: The underlying http status code
                      format: int32
                      example: 500
                    message:
                      type: string
                      description: A simple message in english describing the error and can be returned to the consumer
                      example: Age cannot be less than 18
                    domain:
                      type: string
                      description: The domain where the error is originating from as defined by the service
                      example: Payments
                    metadata:
                      type: object
                      additionalProperties:
                        type: string
                      description: Any additional details to be conveyed as determined by the service. If present, will return map of key value pairs
                      example:
                        propertyName: propertyName is required
                - type: object
                  description: Tradein service error
                  properties:
                    reason:
                      type: string
                      description: Payment agreement retrieval error reason codes
                      enum:
                      - Tradein_BadRequest
                      - Tradein_InvalidIdentity
                      - Tradein_ServerError
                      example: Tradein_ServerError
        '401':
          description: Unauthorized. Indicates that provided credentials is not valid
          content:
            text/plain:
              schema:
                type: string
                example: Jwt is expired
            application/json:
              schema:
                allOf:
                - required:
                  - code
                  - domain
                  - message
                  type: object
                  properties:
                    code:
                      type: integer
                      description: The underlying http status code
                      format: int32
                      example: 500
                    message:
                      type: string
                      description: A simple message in english describing the error and can be returned to the consumer
                      example: Age cannot be less than 18
                    domain:
                      type: string
                      description: The domain where the error is originating from as defined by the service
                      example: Payments
                    metadata:
                      type: object
                      additionalProperties:
                        type: string
                      description: Any additional details to be conveyed as determined by the service. If present, will return map of key value pairs
                      example:
                        propertyName: propertyName is required
                required:
                - code
                - domain
                - message
                - reason
                type: object
                properties:
                  reason:
                    type: string
                    description: A reason code specific to the service and can be used to identify the exact issue. Should be unique within a domain
                    example: Reason_Code
              example:
                code: 401
                domain: Auth
                message: Invalid authentication
                reason: Invalid_Authentication
        '403':
          description: an unsuccessful response
          content:
            application/json:
              schema:
                allOf:
                - required:
                  - code
                  - domain
                  - message
                  type: object
                  properties:
                    code:
                      type: integer
                      description: The underlying http status code
                      format: int32
                      example: 500
                    message:
                      type: string
                      description: A simple message in english describing the error and can be returned to the consumer
                      example: Age cannot be less than 18
                    domain:
                      type: string
                      description: The domain where the error is originating from as defined by the service
                      example: Payments
                    metadata:
                      type: object
                      additionalProperties:
                        type: string
                      description: Any additional details to be conveyed as determined by the service. If present, will return map of key value pairs
                      example:
                        propertyName: propertyName is required
                - type: object
                  description: Tradein service error
                  properties:
                    reason:
                      type: string
                      description: Payment agreement retrieval error reason codes
                      enum:
                      - Tradein_BadRequest
                      - Tradein_InvalidIdentity
                      - Tradein_ServerError
                      example: Tradein_ServerError
        '500':
          description: Tradein UpgradeElection error response
          content:
            application/json:
              schema:
                allOf:
                - required:
                  - code
                  - domain
                  - message
                  type: object
                  properties:
                    code:
                      type: integer
                      description: The underlying http status code
                      format: int32
                      example: 500
                    message:
                      type: string
                      description: A simple message in english describing the error and can be returned to the consumer
                      example: Age cannot be less than 18
                    domain:
                      type: string
                      description: The domain where the error is originating from as defined by the service
                      example: Payments
                    metadata:
                      type: object
                      additionalProperties:
                        type: string
                      description: Any additional details to be conveyed as determined by the service. If present, will return map of key value pairs
                      example:
                        propertyName: propertyName is required
                - type: object
                  description: Tradein service error
                  properties:
                    reason:
                      type: string
                      description: Payment agreement retrieval error reason codes
                      enum:
                      - Tradein_BadRequest
                      - Tradein_InvalidIdentity
                      - Tradein_ServerError
                      example: Tradein_ServerError
      security:
      - bearerAuthTradein:
        - w:createUpgradeableLoan
components:
  securitySchemes:
    bearerAuthTradein:
      type: http
      scheme: bearer
      bearerFormat: JWT