Paginate through all payment transactions 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-4/payment-transactions

Paginate through all payment transactions that are available based in the current authentication context. Transactions of every origin are returned unless filtered; each entry is either a platform or an imported transaction, discriminated by origin.

Query parameters

  • filter object | string

    The filter(s) to apply to the payment transactions.

  • page object | string

    The pagination information for the request.

Responses

  • 200 application/json

    Retrieved a page of payment transactions successfully.

    Hide response attribute Show response attribute object
    • data object Required

      The page of payment transactions. The shape of each entry depends on its origin.

      One of:
  • 401

    Client authentication failed.

  • 403

    Missing one or more required scopes.

  • 500

    An internal server error occurred.

GET /2026-4/payment-transactions
curl \
 --request GET 'https://api.pace.cloud/payment/2026-4/payment-transactions' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": {
    "additionalData": {
      "cardSchemeReference": "MCC-5541",
      "legacyInvoiceNo": "R-2024-88213",
      "odometerKm": 143902
    },
    "authorizedAmount": "120.00",
    "authorizedAt": "2023-10-01T12:00:00.000Z",
    "capturedAmount": "46.87",
    "capturedAt": "2023-10-01T12:00:00.000Z",
    "clientId": "pace-drive-app",
    "createdAt": "2023-10-01T12:00:00.000Z",
    "currency": "EUR",
    "externalId": "dkv:TXN-2024-0009182",
    "id": "6fc2acbd-3afd-4df3-9967-836a7929b13f",
    "importId": "9b1c0f4e-2f3a-4c5d-8e6f-7a8b9c0d1e2f",
    "kind": "FUEL_CARD_PROVIDER",
    "origin": "IMPORTED",
    "paymentMethodId": "b4fd81c9-8969-4323-98b7-855a7d7f0d60",
    "poi": {
      "address": {
        "city": "Karlsruhe",
        "country": "DE",
        "houseNumber": "18",
        "postalCode": "76131",
        "street": "Haid-und-Neu-Straße"
      },
      "id": "154e01ae-557a-48b3-a68a-609f1507db1d",
      "name": "PACE Fuel Station"
    },
    "products": [
      {
        "configurations": {
          "label": "Pump Number",
          "name": "PUMP_NUMBER",
          "type": "INPUT",
          "value": "100.00"
        },
        "currency": "EUR",
        "id": "8394e4df-95f6-4b9e-87da-4982c0aaec4b",
        "label": "Fueling",
        "priceExcludingVAT": "61.34",
        "priceIncludingVAT": "72.99",
        "pricePerUnitExcludingVAT": "1.596",
        "pricePerUnitIncludingVAT": "1.899",
        "quantity": "38.62",
        "status": "CONFIGURED",
        "type": "FUELING",
        "unit": "LITER",
        "vatAmount": "13.63",
        "vatRate": "0.19"
      }
    ],
    "status": "CAPTURED",
    "summary": {
      "currency": "EUR",
      "totalAmountExcludingVAT": "88.90",
      "totalAmountIncludingVAT": "104.84",
      "vatAmount": "15.94"
    },
    "updatedAt": "2023-10-01T12:00:00.000Z",
    "userId": "a1c782d9-7a6c-4e5a-b05b-1d11b93c510a"
  }
}