PATCH
/
mailboxes
/
{id}
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"
    }
  }
}

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

The body is of type object.

Response

200
application/json

Successful

The response is of type object.