curl --location --request POST 'https://api.inboxkit.com/v1/api/mailboxes/delete-signature' \
--header 'X-Workspace-Id;' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"mailbox_uids": [
"uid1",
"uid2",
"uid3"
]
}'{
"error": false,
"message": "Signatures deleted successfully",
"results": {
"deleted": [
"uid1"
],
"not_found_signature": [
"uid2"
],
"failed": [
{
"uid": "uid3",
"reason": "Mailbox not found or does not belong to workspace"
}
]
},
"summary": {
"total_requested": 3,
"deleted_count": 1,
"not_found_signature_count": 1,
"failed_count": 1
}
}