Resume subscription
Enterprise Only
This endpoint is only available in the Enterprise package and requires the authenticated user to be a Super Admin.
Payment Platform Required
This endpoint is only available if a payment platform (Stripe, Paddle, etc.) has been configured in Mixpost.
Resume a previously canceled or paused subscription.
Method: POST
URL: https://example.com/<MIXPOST_CORE_PATH>/api/panel/workspaces/{workspaceUuid}/subscription/resume
Authorization: Bearer <token>
Response:
- 200
- 401
- 403
- 404
- 422
{
"success": true
}
{
"message": "Unauthenticated."
}
{
"message": "Access forbidden."
}
{
"message": "Workspace not found."
}
{
"message": "Validation errors",
"errors": {
"subscription": ["Subscription not found."]
}
}
{
"message": "Validation errors",
"errors": {
"subscription": ["This subscription cannot be resumed."]
}
}