Skip to main content
Cancel the active mail subscription for the organization. The subscription is marked as cancelled immediately, but mailboxes remain active and fully functional until the end of the current billing period. No refunds are issued for unused time.
Cancellation is end-of-period — your team keeps full access to mailboxes until the billing period expires.

Endpoint

POST /v1/billing/cancel

Headers

Authorization
string
required
Bearer token. Format: Bearer <token>
X-Organization-Id
string
required
The ID of the organization whose subscription will be cancelled.

Request body

No request body required.

Response

success
boolean
true on a successful cancellation request.
message
string
Confirmation message including the date access will end. For example: "Subscription cancelled. You will retain access until 7/31/2025."

Example

curl --request POST \
  --url https://api.nyotaimara.com/v1/billing/cancel \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Organization-Id: <org-id>'
{
  "success": true,
  "message": "Subscription cancelled. You will retain access until 7/31/2025."
}