Fat Zebra Transactions API

The Transactions API from Fat Zebra — 2 operation(s) for transactions.

Operations 2

GET /transactions/{transaction_fatzebra_id}/dispute Fetch dispute #
PUT /transactions/{transaction_fatzebra_id}/dispute/accept Accept dispute #

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/fat-zebra-transactions-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 email required.

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

OpenAPI Specification

fat-zebra-transactions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: gateway Transactions API
  version: '1.0'
servers:
- url: https://gateway.pmnts-sandbox.io/v1.0
security:
- sec0: []
tags:
- name: Transactions
paths:
  /transactions/{transaction_fatzebra_id}/dispute:
    get:
      summary: Fetch dispute
      description: ''
      operationId: fetch-dispute
      parameters:
      - name: Content-Type
        in: header
        schema:
          type: string
          default: application/json
      - name: transaction_fatzebra_id
        in: path
        description: The fatzebra id of the transaction.
        schema:
          type: string
        required: true
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Disputed:
                  value: "{\n    \"successful\": true,\n    \"response\": {\n        \"disputed\": true,\n        \"dispute\": {\n            \"opened_on\": \"2022-11-08\",\n            \"reference\": \"20210929603011-5\",\n            \"amount_cents\": 420,\n            \"amount_currency\": \"AUD\",\n            \"next_due_date\": \"2022-11-22\",\n            \"status\": \"open\",\n            \"reason_code\": \"4837\",\n            \"reason_description\": \"No Cardholder Authorization\",\n            \"dispute_events\": [\n                {\n                    \"acquirer_event_code\": \"CB1\",\n                    \"acquirer_event_description\": \"1st Chargeback\",\n                    \"posting_date\": \"2022-11-08\"\n                }\n            ]\n        }\n    },\n    \"errors\": [],\n    \"test\": true\n}"
                Not Disputed:
                  value: "{\n    \"successful\": true,\n    \"response\": {\n        \"disputed\": false\n    },\n    \"errors\": [],\n    \"test\": true\n}"
              schema:
                oneOf:
                - title: Disputed
                  type: object
                  properties:
                    successful:
                      type: boolean
                      example: true
                      default: true
                    response:
                      type: object
                      properties:
                        disputed:
                          type: boolean
                          example: true
                          default: true
                        dispute:
                          type: object
                          properties:
                            opened_on:
                              type: string
                              example: '2022-11-08'
                            reference:
                              type: string
                              example: 20210929603011-5
                            amount_cents:
                              type: integer
                              example: 420
                              default: 0
                            amount_currency:
                              type: string
                              example: AUD
                            next_due_date:
                              type: string
                              example: '2022-11-22'
                            status:
                              type: string
                              example: open
                            reason_code:
                              type: string
                              example: '4837'
                            reason_description:
                              type: string
                              example: No Cardholder Authorization
                            dispute_events:
                              type: array
                              items:
                                type: object
                                properties:
                                  acquirer_event_code:
                                    type: string
                                    example: CB1
                                  acquirer_event_description:
                                    type: string
                                    example: 1st Chargeback
                                  posting_date:
                                    type: string
                                    example: '2022-11-08'
                    errors:
                      type: array
                    test:
                      type: boolean
                      example: true
                      default: true
                - title: Not Disputed
                  type: object
                  properties:
                    successful:
                      type: boolean
                      example: true
                      default: true
                    response:
                      type: object
                      properties:
                        disputed:
                          type: boolean
                          example: false
                          default: true
                    errors:
                      type: array
                    test:
                      type: boolean
                      example: true
                      default: true
        '404':
          description: '404'
          content:
            application/json:
              examples:
                Result:
                  value: "{\n    \"successful\": false,\n    \"response\": {},\n    \"errors\": [\n        \"Could not find transaction\"\n    ],\n    \"test\": true\n}"
              schema:
                type: object
                properties:
                  successful:
                    type: boolean
                    example: false
                    default: true
                  response:
                    type: object
                    properties: {}
                  errors:
                    type: array
                    items:
                      type: string
                      example: Could not find transaction
                  test:
                    type: boolean
                    example: true
                    default: true
        '422':
          description: '422'
          content:
            application/json:
              examples:
                Result:
                  value: "{\n    \"successful\": false,\n    \"response\": {},\n    \"errors\": [\"Merchant not configured for TPP\"],\n    \"test\": true\n}"
              schema:
                type: object
                properties:
                  successful:
                    type: boolean
                    example: false
                    default: true
                  response:
                    type: object
                    properties: {}
                  errors:
                    type: array
                    items:
                      type: string
                      example: Merchant not configured for TPP
                  test:
                    type: boolean
                    example: true
                    default: true
      deprecated: false
      x-readme:
        code-samples:
        - language: curl
          code: curl https://gateway.pmnts-sandbox.io/v1.0/transactions/001-P-154WFRUM/dispute -u TEST:TEST
        samples-languages:
        - curl
      tags:
      - Transactions
  /transactions/{transaction_fatzebra_id}/dispute/accept:
    put:
      summary: Accept dispute
      description: ''
      operationId: accept-dispute
      parameters:
      - name: Content-Type
        in: header
        schema:
          type: string
          default: application/json
      - name: transaction_fatzebra_id
        in: path
        description: The fatzebra id of the transaction.
        schema:
          type: string
        required: true
      responses:
        '201':
          description: '201'
          content:
            application/json:
              examples:
                OK:
                  value: "{\n    \"successful\": true,\n    \"response\": {},\n    \"errors\": [],\n    \"test\": true\n}"
              schema:
                type: object
                properties:
                  successful:
                    type: boolean
                    example: true
                    default: true
                  response:
                    type: object
                    properties: {}
                  errors:
                    type: array
                  test:
                    type: boolean
                    example: true
                    default: true
        '404':
          description: '404'
          content:
            application/json:
              examples:
                Result:
                  value: "{\n    \"successful\": false,\n    \"response\": {},\n    \"errors\": [\n        \"Could not find transaction\"\n    ],\n    \"test\": true\n}"
              schema:
                type: object
                properties:
                  successful:
                    type: boolean
                    example: false
                    default: true
                  response:
                    type: object
                    properties: {}
                  errors:
                    type: array
                    items:
                      type: string
                      example: Could not find transaction
                  test:
                    type: boolean
                    example: true
                    default: true
        '422':
          description: '422'
          content:
            application/json:
              examples:
                Result:
                  value: "{\n    \"successful\": false,\n    \"response\": {},\n    \"errors\" => ['Dispute has already been closed']\n    \"test\": true\n}"
      deprecated: false
      x-readme:
        code-samples:
        - language: curl
          code: curl https://gateway.pmnts-sandbox.io/v1.0/transactions/001-P-154WFRUM/dispute/accept -u TEST:TEST
        samples-languages:
        - curl
      tags:
      - Transactions
components:
  securitySchemes:
    sec0:
      type: http
      scheme: basic
x-readme:
  headers: []
  explorer-enabled: true
  proxy-enabled: true
x-readme-fauxas: true