Get all payment method kinds. Beta

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://developer.pace.cloud/doc/payment/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Payment MCP server": {
  "url": "https://developer.pace.cloud/doc/payment/mcp"
}
Close
GET /2026-2/payment-method-kinds

Get all payment method kinds that are enabled for the given authentication context. This endpoint is useful to check which payment method kinds a client is allowed to use.

Query parameters

  • filter object | string

Responses

  • 200 application/json

    Retrieved a list of payment method kinds successfully.

    Hide response attribute Show response attribute object
    • data array[object] Required

      The list of payment method kinds.

      Hide data attributes Show data attributes object
      • icons object Required

        The icons associated with the payment method kind.

        Hide icons attributes Show icons attributes object
        • dark string(uri) | null Required

          The URL of the dark icon for the payment method kind, if applicable.

        • default string(uri) Required

          The URL of the default icon for the payment method kind.

      • implicit boolean Required

        A boolean indicating whether the payment method kind is implicit. Implicit payment method kinds are not onboarded by the user but rather the system during authorization.

      • label string Required

        The localized label of the payment method kind.

      • name string Required

        The unique identifier of the payment method kind.

      • twoFactorAuthentication boolean Required

        A boolean indicating whether the payment method kind requires two-factor authentication.

  • 401

    Client authentication failed.

  • 403

    Missing one or more required scopes.

  • 500

    An internal server error occurred.

GET /2026-2/payment-method-kinds
curl \
 --request GET 'https://api.pace.cloud/payment/2026-2/payment-method-kinds' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": [
    {
      "icons": {
        "dark": "https://cdn.pace.cloud/fuel-card-provider/dark.png",
        "default": "https://cdn.pace.cloud/fuel-card-provider/default.png"
      },
      "implicit": false,
      "label": "Fuel Card Provider",
      "name": "FUEL_CARD_PROVIDER",
      "twoFactorAuthentication": false
    }
  ]
}