GET
/
inbound
/
allowlist
curl --request GET \
  --url https://api.jetemail.com/inbound/allowlist \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "rules": [
    {
      "uuid": "550e8400-e29b-41d4-a716-446655440000",
      "domain": "example.com",
      "type": "from",
      "action": "allow",
      "value": "user@example.com",
      "notes": "Trusted sender",
      "last_modified": 1735689600
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

domain
string
required

Domain to fetch allowlist rules for

Response

200
application/json
Successfully retrieved allowlist rules
success
boolean
Example:

true

rules
object[]