scheduled_for_cancellation or renewal_failed| Outcome | What happens | Charge |
|---|---|---|
| License still active | Mailbox returns to active, mailbox_reactivation_status becomes completed | None |
| License expired | We re-purchase it automatically and set the mailbox up again. status moves to processing, then active | Normal purchase price, from your wallet |
| License expired, wallet balance too low | Paused with mailbox_reactivation_status: needs_rebuy. Top up your wallet and call Re-purchase mailboxes for reactivation | Charged when you call it |
| Could not be reactivated | mailbox_reactivation_status: permanently_failed. Contact support | None |
200 when it is valid, even if every mailbox fails. Check results.failed for per-mailbox reasons:Mailbox not foundOnly Microsoft and Azure mailboxes can be reactivated hereMailbox is not in a reactivatable state (<status>)Recovery window expired (deadline: YYYY-MM-DD)No admin mailbox found for this domaincurl --location 'https://api.inboxkit.com/v1/api/mailboxes/reactivate' \
--header 'X-Workspace-Id;' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"uids": [
"string"
]
}'{
"error": false,
"message": "Queued 2 mailbox(es) for reactivation, 0 failed",
"batch_id": "string",
"results": {
"success": [
{
"uid": "string",
"action": "reactivation_queued"
}
],
"failed": [
{
"uid": "string",
"error": "Mailbox is not in a reactivatable state (active)"
}
]
}
}