cURL
curl --request PATCH \ --url https://api.amplemarket.com/mailboxes/{id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "daily_email_limit": 123 }'
{ "id": "0198f652-70d5-77cd-a62c-dc8f3da6dc52", "email": "mailbox@example.com", "email_provider": "google", "daily_email_limit": 100, "status": "active", "user": { "id": "0198f652-709f-774d-af69-a8e6c45aea72", "name": "Example User", "email": "foo-22@email.com" }, "created_at": "2025-08-29T14:54:14Z", "updated_at": "2025-08-29T14:54:14Z", "_links": { "self": { "href": "/mailboxes/0198f652-70d5-77cd-a62c-dc8f3da6dc52" } } }
Update mailbox daily email limit
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Mailbox id
Daily email limit update
The body is of type object.
object
Successful
The response is of type object.
Was this page helpful?