Delete the recorded subscription
DELETE/panel/workspaces/:workspace/subscription
Deletes the workspace's recorded default subscription. This removes Mixpost's record only — the subscription is not cancelled on the payment platform. Use the cancel endpoint if you need a real cancellation.
The request takes no body. success reflects whether the row was deleted.
Request
Responses
- 200
- 401
- 403
- 404
- 422
{"success": <bool>} — reports whether the update or delete actually affected a record, so false is possible.
The bearer token is missing, malformed, unknown, or expired.
The token is valid, but the user it belongs to may not perform this action:
- they are not a member of the
{workspace}in the path; or - their workspace role is too low for this endpoint (write routes require Admin or Member); or
- for
/panelendpoints, they are not a platform administrator.
The host application that Mixpost is installed into can also deny access to Mixpost as a whole, which produces the same response.
The {workspace} UUID in the path does not match any workspace.
{"errors": {"subscription": ["This workspace does not have a subscription."]}} when the workspace has no default subscription.