Mail: Autoreplies
Update autoreply
Replace the autoreply with the given content and schedule. Omitted optional fields are cleared: omit starts_at to activate the autoreply immediately and omit ends_at to keep it active indefinitely.
put/api/mail/v1/autoreplies/{autoreplyId}
Path parameters
autoreplyIdstring required
Example:AR1a2b3c4d5e6f7g
Autoreply resource ID
Request body
Example request
{
"subject": "Out of office",
"body": "I am on vacation until August 1st.",
"display_name": "John Doe",
"starts_at": "2026-08-01T00:00:00Z",
"ends_at": "2026-09-01T00:00:00Z"
}Response
Success response
Example response
{
"id": "AR1a2b3c4d5e6f7g",
"mailbox": {
"id": "AC1a2b3c4d5e6f7g",
"address": "user@example.com"
},
"subject": "Out of office",
"body": "I am on vacation until August 1st.",
"display_name": "John Doe",
"starts_at": "2026-08-01T00:00:00Z",
"ends_at": "2026-09-01T00:00:00Z",
"created_at": "2026-07-24T12:00:00Z",
"updated_at": "2026-07-24T12:00:00Z"
}