Get a single payment transaction 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/{paymentTransactionId}

Retrieve a single payment transaction by its identifier.

Path parameters

  • paymentTransactionId string(uuid) Required

    The unique identifier of the payment transaction to retrieve.

Responses

  • 200 application/json

    The payment transaction was retrieved successfully.

    Hide response attribute Show response attribute object
    • data object Required

      The payment transaction for the given payment transaction ID. Its shape depends on origin.

      One of:
  • 400

    The request parameters are invalid or missing.

  • 401

    Client authentication failed.

  • 403

    Missing one or more required scopes.

  • 404

    The payment transaction was not found.

  • 500

    An internal server error occurred.

GET /2026-4/payment-transactions/{paymentTransactionId}
curl \
 --request GET 'https://api.pace.cloud/payment/2026-4/payment-transactions/6fc2acbd-3afd-4df3-9967-836a7929b13f' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": {
    "authorizationType": "PARTIAL",
    "authorizedAmount": "120.00",
    "authorizedAt": "2023-10-01T12:00:00.000Z",
    "cancelledAt": "2023-10-01T12:00:00.000Z",
    "capturedAmount": "46.87",
    "capturedAt": "2023-10-01T12:00:00.000Z",
    "cartId": "317643aa-b684-44de-873c-a72d9ed766ee",
    "clientId": "pace-drive-app",
    "createdAt": "2023-10-01T12:00:00.000Z",
    "currency": "EUR",
    "failedAt": "2023-10-01T12:00:00.000Z",
    "failureCode": "INSUFFICIENT_FUNDS",
    "id": "6fc2acbd-3afd-4df3-9967-836a7929b13f",
    "kind": "FUEL_CARD_PROVIDER",
    "origin": "PLATFORM",
    "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": {
      "buyerId": "0151f0e1-f932-4d3a-9e2a-0f3818b8cb1c",
      "configurations": {
        "label": "Pump Number",
        "name": "PUMP_NUMBER",
        "type": "INPUT",
        "value": "100.00"
      },
      "contractId": "3fc6db3b-615c-4db2-9d86-c37e9df8ae47",
      "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": "CANCELLED",
      "supplierId": "1dd3721c-7c7b-4acb-8adc-e027267f603c",
      "type": "FUELING",
      "unit": "LITER",
      "vatAmount": "13.63",
      "vatRate": "0.19"
    },
    "proxy": true,
    "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"
  }
}