10.2.2. Raport transakcji po wypłacie(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 transakcji powiązanych z wypłatami.

Dostępność: Tylko Panel

Request Body:

{
  "taskName": "report_csv",
  "type": "transaction_on_payout",
  "columns": [
    "transactionInternalId",
    "transactionAmount",
    "transactionIsPaidOut"
  ],
  "conditions": {
    "date": {
      "from": 1609459200,
      "to": 1612137599,
      "timezone": "Europe/Warsaw"
    },
    "language": "PL",
    "filters": {
      "serviceUuid": ["service-uuid-1"],
      "paymentMethodCode": ["card"],
      "transactionStatus": ["settled"],
      "transactionType": ["sale"]
    }
  },
  "formatting": {
    "columnSeparator": ";",
    "numberSeparator": ","
  },
  "destination": {
    "email": ["finance@example.com"],
    "callbackUrl": "https://your-domain.com/webhook/report"
  }
}

Pola:

  • taskName (string, wymagany) - "report_csv"
  • type (string, wymagany) - "transaction_on_payout"
  • columns (array, wymagany) - Lista kolumn (min. 1)
  • conditions (object, wymagany):
    • date (object, wymagany)
    • language (string, opcjonalny)
    • filters (object, opcjonalny) - Uwaga: Brak transactionIsPaidOut w tym typie!
  • formatting (object, opcjonalny)
  • destination (object, opcjonalny) - Jak w raporcie transakcji

Uwaga:

  • Ten raport NIE obsługuje filtra transactionIsPaidOut.