Cancel a Subscription

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/zim/doc/esim-api/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "eSIM API MCP server": {
    "url": "https://bump.sh/zim/doc/esim-api/mcp"
  }
}

Close
DELETE /subscriptions/:subscriptionID

Cancels an active Subscription owned by the authenticated User. The Subscription's status is moved to CANCELLED.

Path parameters

  • subscriptionID string Required

    ID of the Subscription to cancel

Responses

  • 200 application/json

    Subscription cancelled successfully

    Hide response attribute Show response attribute object
    • message string

      Human-readable confirmation message

DELETE /subscriptions/:subscriptionID
curl \
 --request DELETE 'https://zim.api.zimconnections.com/subscriptions/:subscriptionID' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "X-App-Identifier: $API_KEY"
Response examples (200)
{
  "message": "Plan cancelled successfully"
}