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": "0197c138-8b9d-719b-8d2a-c144705ec272", "email": "mailbox@example.com", "email_provider": "google", "daily_email_limit": 100, "status": "active", "user": { "id": "0197c138-8b8e-7e7c-9d77-50f7da10650a", "name": "Example User", "email": "foo-22@email.com" }, "created_at": "2025-06-30T14:23:17Z", "updated_at": "2025-06-30T14:23:17Z", "_links": { "self": { "href": "/mailboxes/0197c138-8b9d-719b-8d2a-c144705ec272" } } }
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?