8.3.1 Multipayout

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

It is possible to charge an existing card profile with the multipayout option. To do this, add the data described in section 5.4 Multipayouts to the request body used for charging the card profile.

Example payload

{
    "serviceId": "63f574ed-d4ad-407e-9981-39ed7584a7b7",
    "paymentProfileId": "39ac1087-e632-41ff-acb8-8d661068a9d5",
    "amount": 303,
    "currency": "PLN",
    "orderId": "test",
    "data": {
        "multipayout": [
            {
                "label": "1",
                "iban": "PL01100010100000001010010000",
                "amount": 102
            },
            {
                "label": "2",
                "iban": "PL00101000000000001000100000",
                "amount": 201
            }
        ]
    }
}