10.2.3. Raport rozliczeniowy transakcji (CSV)

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://bump.sh/pgw/doc/axepta-api/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"axepta API MCP server": {
  "url": "https://bump.sh/pgw/doc/axepta-api/mcp"
}
Close

Raport tylko rozliczonych transakcji.

Dostępność: Tylko Panel

Request Body:

{
  "taskName": "report_csv",
  "type": "transaction_settled",
  "columns": [
    "transactionInternalId",
    "transactionAmount",
    "transactionSettled"
  ],
  "conditions": {
    "date": {
      "from": 1609459200,
      "to": 1612137599,
      "timezone": "Europe/Warsaw"
    },
    "filters": {
      "serviceUuid": ["service-uuid-1"],
      "paymentMethodCode": ["card", "blik"],
      "transactionIsPaidOut": ["payout"],
      "transactionType": ["sale"]
    }
  },
  "formatting": {
    "columnSeparator": ",",
    "numberSeparator": "."
  },
  "destination": {
    "email": ["accounting@example.com"]
  }
}

Pola:

  • taskName (string, wymagany) - "report_csv"
  • type (string, wymagany) - "transaction_settled"
  • columns (array, wymagany) - Lista kolumn (min. 1)
  • conditions (object, wymagany):
    • date (object, wymagany)
    • filters (object, opcjonalny) - Uwaga: Brak transactionStatus w tym typie!
  • destination (object, opcjonalny)

Uwaga:

  • Ten raport NIE obsługuje filtra transactionStatus.
  • Obsługuje formatowanie przez timezone (w date), columnSeparator i numberSeparator (w formatting).