Jack Henry & Associates Cards API

Debit and credit card management.

Operations 2

GET /a/consumer/api/v0/users/{userId}/cards List Cards #
POST /payments/v1/cards/authorizations Authorize Card Payment #

Documentation

Specifications

Other Resources

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/jack-henry-cards-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

jack-henry-cards-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Jack Henry Cards API
  version: '1.0'
  description: 'Operations tagged Cards across 2 of this provider''s published API definitions: banno-consumer-api-openapi.yml, jack-henry-payments-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.banno.com
  description: Banno production
- url: https://api.payments.jackhenry.com
  description: Jack Henry Payments production
- url: https://api.payments.sandbox.jackhenry.com
  description: Jack Henry Payments sandbox
tags:
- name: Cards
  description: Debit and credit card management.
paths:
  /a/consumer/api/v0/users/{userId}/cards:
    get:
      summary: List Cards
      operationId: listCards
      tags:
      - Cards
      security:
      - openIdConnect:
        - https://api.banno.com/consumer/auth/cards.readonly
      parameters:
      - $ref: '#/components/parameters/UserId'
      responses:
        '200':
          description: Cards linked to the user.
          content:
            application/json:
              schema:
                type: object
                properties:
                  cards:
                    type: array
                    items:
                      $ref: '#/components/schemas/Card'
    servers:
    - url: https://api.banno.com
      description: Banno production
  /payments/v1/cards/authorizations:
    post:
      summary: Authorize Card Payment
      operationId: authorizeCard
      tags:
      - Cards
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CardAuthRequest'
      responses:
        '201':
          description: Card authorization result.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CardAuthResult'
      security:
      - bearerAuth: []
    servers:
    - url: https://api.payments.jackhenry.com
      description: Jack Henry Payments production
    - url: https://api.payments.sandbox.jackhenry.com
      description: Jack Henry Payments sandbox
components:
  schemas:
    Card:
      type: object
      properties:
        id:
          type: string
          format: uuid
        last4:
          type: string
        cardType:
          type: string
          enum:
          - Debit
          - Credit
        status:
          type: string
          enum:
          - Active
          - Locked
          - Lost
          - Stolen
          - Expired
        expirationDate:
          type: string
          pattern: ^[0-9]{2}/[0-9]{2}$
        nameOnCard:
          type: string
    CardAuthRequest:
      type: object
      required:
      - cardToken
      - amount
      - merchantId
      properties:
        cardToken:
          type: string
        amount:
          type: number
          format: double
        currency:
          type: string
          default: USD
        merchantId:
          type: string
        cvvProvided:
          type: boolean
    CardAuthResult:
      type: object
      properties:
        id:
          type: string
          format: uuid
        approved:
          type: boolean
        responseCode:
          type: string
        authCode:
          type: string
        networkReference:
          type: string
  parameters:
    UserId:
      name: userId
      in: path
      required: true
      description: ID of the desired user (UUID format).
      schema:
        type: string
        format: uuid
  securitySchemes:
    openIdConnect:
      type: openIdConnect
      openIdConnectUrl: https://api.banno.com/a/oidc/.well-known/openid-configuration
    bearerAuth:
      type: http
      scheme: bearer
x-refined-from:
- banno-consumer-api-openapi.yml
- jack-henry-payments-openapi.yml