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": "019b4aeb-f6d9-7dc2-ba0f-9c3c8dd9e03d",
  "email": "[email protected]",
  "email_provider": "google",
  "daily_email_limit": 100,
  "status": "active",
  "user": {
    "id": "019b4aeb-f6aa-79de-ae6c-aee5647bb32e",
    "name": "Example User",
    "email": "[email protected]"
  },
  "created_at": "2025-12-23T11:15:36Z",
  "updated_at": "2025-12-23T11:15:36Z",
  "_links": {
    "self": {
      "href": "/mailboxes/019b4aeb-f6d9-7dc2-ba0f-9c3c8dd9e03d"
    }
  }
}

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>