9.2 HTTP Response

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

W przypadku wykonania poprawnego zapytania dotyczącego pobrania danych transakcji serwer odpowie statusem HTTP 200 oraz informacją o płatności.

Odpowiedź serwera

{
    "status": "SUCCESS",
    "data": {
        "payment": {
            "id": "1572084b-4b63-40a7-90b1-17199172a385",
            "url": "https://paywall.axepta.pl/pay/1572084b-4b63-40a7-90b1-17199172a385",
            "serviceId": "10af53c6-35ce-4713-81ba-883501277d40",
            "orderId": "123123123",
            "amount": "100",
            "amountPaid": 0,
            "amountRefunded": 0,
            "amountSubmittedRefund": 0,
            "currency": "PLN",
            "status": "new",
            "isActive": true,
            "createdAt": 1631540831,
            "modifiedAt": 1631540831,
            "isGenerated": false,
            "isUsed": false,
            "isConfirmVisited": false,
            "returnUrl": "https://domain.com/return",
            "failureReturnUrl": "https://domain.com/failure",
            "successReturnUrl": "https://domain.com/success",
            "customer": {
                "firstName": "Jan",
                "lastName": "Kowalski",
                "email": "jan.kowalski@example.com",
                "phone": "501501501",
                "locale": "pl",
                "cid": "123"
            }
        }
    }
}