Skip to main content
POST
/
inbound
/
quarantine-release
Release email from quarantine
curl --request POST \
  --url https://api.jetemail.com/inbound/quarantine-release \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "uid": "DE398F73-6CBC-4333-B394-6DAA6792525B.1"
}
'
{
  "success": true,
  "message": "EML file successfully released from quarantine and sent to mail server",
  "data": {
    "uid": "DE398F73-6CBC-4333-B394-6DAA6792525B.1",
    "domain_uuid": "12345678-1234-4321-abcd-123456789012",
    "domain_name": "example.com"
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
uid
string
required

Unique identifier of the quarantined message

Example:

"DE398F73-6CBC-4333-B394-6DAA6792525B.1"

Response

Successfully retrieved and processed quarantined email

success
boolean
Example:

true

message
string
Example:

"EML file successfully released from quarantine and sent to mail server"

data
object