PPRO Payment Charge Controller API

The payment-charge-controller API from PPRO — 1 operation(s) for payment-charge-controller.

Operations 1

GET /v1/payment-charges/{paymentChargeId}/funds-statuses Fetch latest available funds statuses for payment charge captures and refunds #

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/ppro-payment-charge-controller-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

ppro-payment-charge-controller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Ppro Payment Charge Controller API
  version: v1
  description: 'Operations tagged payment-charge-controller across 2 of this provider''s published API definitions: ppro-fund-statuses-openapi.yml, ppro-gpg-funds.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.sandbox.eu.ppro.com
  description: Production - Sandbox environment for integration testing
- url: https://api.eu.ppro.com
  description: Production
tags:
- name: payment-charge-controller
paths:
  /v1/payment-charges/{paymentChargeId}/funds-statuses:
    get:
      tags:
      - payment-charge-controller
      summary: Fetch latest available funds statuses for payment charge captures and refunds
      operationId: getFundsStatuses
      parameters:
      - name: paymentChargeId
        in: path
        required: true
        schema:
          type: string
      - name: Merchant-Id
        in: header
        description: The merchant identifier.
        required: true
        schema:
          type: string
        example: merch_cb6RQnZbBwSBkn34QYXhr
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FundsStateDetailsResponse'
    servers:
    - url: https://api.sandbox.eu.ppro.com
      description: Production - Sandbox environment for integration testing
    - url: https://api.eu.ppro.com
      description: Production
components:
  schemas:
    FundsStateDetailsResponse:
      type: object
      properties:
        operationId:
          type: string
          description: Capture ID or refund ID)
        operationType:
          type: string
          description: 'Operation type: CAPTURE or REFUND'
          enum:
          - CAPTURE
          - REFUND
        fundsStatus:
          type: string
          description: Funds status
          enum:
          - CAPTURE_FUNDS_NOT_EXPECTED
          - CAPTURE_FUNDS_MISSING
          - CAPTURE_FUNDS_WAITING
          - CAPTURE_FUNDS_RECEIVED
          - REFUND_FUNDS_NOT_EXPECTED
          - REFUND_FUNDS_REJECTED
          - REFUND_FUNDS_WAITING
          - REFUND_FUNDS_SENT
        merchantPaymentChargeReference:
          type: string
          description: Merchant's payment-charge reference. This field is available only when the operation type is `CAPTURE`
        merchantRefundReference:
          type: string
          description: Merchant's refund reference. This field is available only when the operation type is `REFUND`
x-refined-from:
- ppro-fund-statuses-openapi.yml
- ppro-gpg-funds.json