7.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

If the request to retrieve transaction data is successful, the server responds with HTTP status 200 and transaction information.

Server response

{
    "status": "SUCCESS",
    "data": {
        "transaction": {
            "id": "5013e9ff-ece1-452a-9bd9-3b867a952794",
            "type": "sale",
            "status": "pending",
            "source": "api",
            "createdAt": 1631261710,
            "modifiedAt": 1631261710,
            "notificationUrl": "http://domain.com/",
            "serviceId": "33532abf-f5f7-42b7-aa68-d4f93ebad053",
            "amount": 100,
            "currency": "PLN",
            "orderId": "123456",
            "paymentMethod": "pbl",
            "paymentMethodChannel": "bnpparibas",
            "payment": {
                "id": "41f9f9fa-c7d0-4f08-8fb9-007cc24428a6",
                "status": "pending"
            }
        }
    }
}