Skip to main content
PATCH
/
mailboxes
/
{id}
Update mailbox daily email limit
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": "019e927c-18d5-7698-8566-1c9c34a15634",
  "email": "mailbox@example.com",
  "email_provider": "google",
  "daily_email_limit": 100,
  "status": "active",
  "user": {
    "id": "019e927c-1888-7ee7-aa98-b9e9e9110e6f",
    "name": "Example User",
    "email": "foo-27@email.com"
  },
  "created_at": "2026-06-04T11:54:26Z",
  "updated_at": "2026-06-04T11:54:27Z",
  "_links": {
    "self": {
      "href": "/mailboxes/019e927c-18d5-7698-8566-1c9c34a15634"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Mailbox id

Body

application/json

Daily email limit update

daily_email_limit
integer
required

New daily email limit for the mailbox

Response

Successful

id
string
email
string
email_provider
enum<string>
Available options:
google,
outlook,
other,
other_mixed
daily_email_limit
integer
status
enum<string>
Available options:
active,
inactive,
needs_reconnection
user
object
created_at
string<date-time>
updated_at
string<date-time>