Treasury Prime Cards API

The Cards API from Treasury Prime — 2 operation(s) for cards.

OpenAPI Specification

treasury-prime-cards-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Treasury Prime Bank Accounts Cards API
  version: '1'
  description: 'REST API covering Accounts, Persons, Businesses, Cards, Payments

    (ACH, Wire, Book, Check), Transactions, Statements, and Webhooks across

    Treasury Prime''s network of sponsor banks. Endpoints derived from

    https://docs.treasuryprime.com/.

    '
  contact:
    name: Treasury Prime
    url: https://developers.treasuryprime.com/
servers:
- url: https://api.sandbox.treasuryprime.com
  description: Sandbox
security:
- BasicAuth: []
tags:
- name: Cards
paths:
  /card:
    get:
      tags:
      - Cards
      summary: List cards
      responses:
        '200':
          description: Cards
    post:
      tags:
      - Cards
      summary: Create a card
      responses:
        '200':
          description: Created
  /card/{id}:
    get:
      tags:
      - Cards
      summary: Fetch a card
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Card
    patch:
      tags:
      - Cards
      summary: Update a card
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Updated
components:
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic
      description: HTTP Basic Auth using API Key ID (username) and Secret (password).