curl --location --request POST 'https://api.inboxkit.com/v1/api/mailboxes/add-signature' \
--header 'X-Workspace-Id;' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"mailbox_uids": [
"uid1",
"uid2",
"uid3"
],
"signature": "<p>Best regards,<br>John Doe</p>"
}'{
"error": false,
"message": "Signatures processed successfully",
"results": {
"updated": [
"uid1"
],
"created": [
"uid2"
],
"failed": [
{
"uid": "uid3",
"reason": "Mailbox not found or does not belong to workspace"
}
]
},
"summary": {
"total_requested": 3,
"updated_count": 1,
"created_count": 1,
"failed_count": 1
}
}