/api/v1/subscription/cancel

API endpoint documentation

post
Tags:subscription
Operation ID: postApiV1SubscriptionCancel
Query Parameters
apiKeystring
required

Your BizKitHub API key (passed as GET parameter)

Body
identityIdstring
required

Logged user identity (from your frontend cookies).

Example: "Z9CPkS2o3UV163VQn5OUv0T8BQi8Fvdg"
subscriptionIdstring
required
Example: "d9DfQL3ZF01t7Ykk"
Responses
200

No description

Base URL:
https://bizkithub.com

Example Request

fetch('https://bizkithub.com/api/v1/subscription/cancel?apiKey=YOUR_API_KEY', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
        "identityId": "Z9CPkS2o3UV163VQn5OUv0T8BQi8Fvdg",
        "subscriptionId": "d9DfQL3ZF01t7Ykk"
    })
})

Example Response

HTTP 200Success Response
{
  "success": false
}

🔑 API Key Required

All BizKitHub API endpoints require authentication using an API key. The API key must be passed as a GET parameter in the URL for all requests.

Back to API Documentation
Last updated: January 2, 2026