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.dev.zimconnections.com/subscriptions/:subscriptionID' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "X-App-Identifier: $API_KEY"
Response examples (200)
{
  "message": "Plan cancelled successfully"
}