Change mailbox settings
Daily cold-send limit, warm-up on or off, whether the mailbox may be scheduled, display name and timezone. Only the fields you send change.
Authorization
BearerAuth AuthorizationBearer <token>
Your API key from app.argorant.com/profile, sent as Authorization: Bearer <key>.
In: header
Path Parameters
email*string
The mailbox address.
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
Shell
curl -X PATCH "https://app.argorant.com/api/v1/inboxes/elena@northgate-advisory.com" \ -H "Content-Type: application/json" \ -d '{ "daily_limit": 40, "warmup": true, "active": true, "display_name": "Elena Vaughn", "timezone": "Europe/London" }'JSON
{ "inbox": { "email": "elena@northgate-advisory.com", "name": "Elena Vaughn", "provider": "google", "status": "connected", "health": "healthy", "daily_limit": 40, "active": true, "warmup": true, "timezone": "Europe/London" }, "changed": [ "daily_limit", "timezone" ]}