Setting up a 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
PUT /{merchantId}/settings/ips

Path parameters

  • merchantId string Required

    Merchant identifier

application/json

Body Required

  • trustedIps array Required

    List of trusted IP addresses from which queries are to be accepted

Responses

  • 200 application/json

    Request executed correctly

    Hide response attribute Show response attribute object
    • status string Required
PUT /{merchantId}/settings/ips
curl \
 --request PUT 'https://api.imoje.pl/v1/merchant/{merchantId}/settings/ips' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"trustedIps":["127.0.0.1","10.10.10.10"]}'
Request example
{
  "trustedIps": [
    "127.0.0.1",
    "10.10.10.10"
  ]
}
Response examples (200)
{
  "status": "success"
}