Downloading the list of trusted IP addresses Run in API Explorer

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/imoje-api-en/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"imoje API eng MCP server": {
  "url": "https://bump.sh/pgw/doc/imoje-api-en/mcp"
}
Close
GET /{merchantId}/settings/ips

Path parameters

  • merchantId string Required

    Merchant identifier

Responses

  • 200 application/json

    Request executed correctly

    Hide response attribute Show response attribute object
    • trustedIps array Required
GET /{merchantId}/settings/ips
curl \
 --request GET 'https://api.imoje.pl/v1/merchant/{merchantId}/settings/ips' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "trustedIps": [
    "127.0.0.1",
    "10.10.10.10"
  ]
}