Delete a mailbox
DELETE
/v1/email/mailboxes/{mailbox_id}
await bird.email.mailboxes.delete("mbx_01abc");client.email.mailboxes.delete("mbx_01krdgeqcxet5s7t44vh8rt9mg")if err := client.Email.Mailboxes.Delete(context.Background(), "mbx_123"); err != nil {
log.Fatal(err)
}$bird->email->mailboxes->delete('mbx_01krdgeqcxet5s7t44vh8rt9mg');bird email mailboxes delete <mailbox-id> --yescurl -X DELETE "https://us1.platform.bird.com/v1/email/mailboxes/{mailbox_id}" \
-H "Authorization: Bearer $TOKEN"Deletes a mailbox. The address stops receiving mail immediately and enters quarantine. The same workspace can bind it to a new mailbox after 30 days, but other workspaces never can. The mailbox and its remembered messages are kept for 30 days, so you can bring it back with POST /email/mailboxes/{mailbox_id}/restore. Once those 30 days are up they are deleted for good.