Inbound
Get inbound domain settings
API Reference
Outbound
- GETGet SMTP users
- POSTCreate new SMTP user
- DELDelete SMTP user
- PATCHUpdate SMTP user
- GETGet transactional API keys
- POSTCreate new transactional API key
- DELDelete transactional API key
- PATCHUpdate transactional API key
- GETGet outbound email logs
- GETGet outbound email logs by UID
- GETGet domains
- POSTAdd new domain
- DELDelete domain
- POSTCheck domain DNS records
Inbound
- GETGet inbound domains
- POSTAdd new inbound domain
- DELDelete inbound domain
- GETGet inbound domain settings
- PATCHUpdate inbound domain settings
- GETGet inbound email logs
- GETGet blocklist rules
- POSTCreate blocklist rule
- DELDelete blocklist rule
- PATCHUpdate blocklist rule
- GETGet allowlist rules
- POSTCreate allowlist rule
- DELDelete allowlist rule
- PATCHUpdate allowlist rule
Inbound
Get inbound domain settings
Retrieves settings for a specific inbound domain
GET
/
inbound
/
settings
/
{uuid}
Copy
curl --request GET \
--url https://api.jetemail.com/inbound/settings/{uuid} \
--header 'Authorization: Bearer <token>'
Copy
{
"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
Enter your Bearer token in the format "Bearer {token}"
Path Parameters
UUID of the domain
Response
200
application/json
Successfully retrieved domain settings
Example:
true
Next hop server
Example:
"mail.internal-server.com:587"
Current status of the domain
Available options:
active
, disabled
Example:
"active"
Digest setting ID
Example:
1
Email address for notifications
Example:
"notify@example.com"
Domain name
Example:
"example.com"
Email address
Example:
"user@example.com"
Digest type (domain-wide or email-specific)
Available options:
domain
, email
Example:
"domain"
Time for digest delivery
Example:
"09:00"
Copy
curl --request GET \
--url https://api.jetemail.com/inbound/settings/{uuid} \
--header 'Authorization: Bearer <token>'
Copy
{
"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"
}
]
}
]
}