Skip to main content
GET
/
inbound
/
domains
/
{uuid}
/
forward-rules
List forwarding rules for a domain
curl --request GET \
  --url https://api.jetemail.com/inbound/domains/{uuid}/forward-rules \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "result": [
    {
      "uuid": "7c1f7c14-1234-4abc-8def-0123456789ab",
      "localpart": "support",
      "destination": "[email protected]",
      "active": 1,
      "verified": 1,
      "last_modified": 1735937552,
      "created_at": 1735937552
    }
  ]
}

Authorizations

Authorization
string
header
required

API key for account management endpoints. Use your api_ prefixed token.

Path Parameters

uuid
string<uuid>
required

UUID of the domain

Pattern: ^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$

Response

Rules listed successfully

success
boolean
Example:

true

result
object[]