> ## Documentation Index
> Fetch the complete documentation index at: https://alguna.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Cancel Subscription

On successful request, the subscription will enter a canceling status.

## Params

<RequestExample>
  ```json theme={null}
  {
    "effectiveEndDate": "2025-05-01T00:00:00Z",
    "shouldSendCancelationEmail": true,
    "cancelationReason": "no_longer_required",
    "cancelationReasonDescription": "The subscription is no longer required"
  }
  ```
</RequestExample>

<ParamField body="effectiveEndDate" type="datetime">
  The effective end date of the subscription, formatted in ISO 8601.
</ParamField>

<ParamField body="shouldSendCancelationEmail" type="boolean">
  Indicates whether a cancellation email should be sent upon cancellation.
</ParamField>

<ResponseField name="cancelationReason" type="string">
  Reason for cancellation if the subscription was canceled. Possible values:
  `no_longer_required`, `moving_provider`, `pricing`, `support`, `features`,
  `other`
</ResponseField>

<ParamField body="cancelationReasonDescription" type="string">
  A detailed description providing additional context for the cancellation
  reason.
</ParamField>

## Response

<Snippet file="subscriptions-response.mdx" />

<Snippet file="subscription-response-fields.mdx" />
