GET
/
inbound
/
settings
/
{uuid}
curl --request GET \
  --url https://api.jetemail.com/inbound/settings/{uuid} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "results": [
    {
      "nexthop": "mail.internal-server.com:587",
      "status": "active",
      "digestSettings": [
        {
          "id": 1,
          "notification_email": "notify@example.com",
          "domain": "example.com",
          "email": "user@example.com",
          "type": "domain",
          "digestTime": "09:00"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Enter your Bearer token in the format "Bearer {token}"

Path Parameters

uuid
string
required

UUID of the domain

Response

200
application/json
Successfully retrieved domain settings
success
boolean
Example:

true

results
object[]