DELETE
/
inbound
/
domains
curl --request DELETE \
  --url https://api.jetemail.com/inbound/domains \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "uuid": "550e8400-e29b-41d4-a716-446655440000"
}'
{
  "success": true,
  "message": "Domain deleted successfully"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
uuid
string
required

UUID of the domain to delete

Example:

"550e8400-e29b-41d4-a716-446655440000"

Response

200
application/json
Domain deleted successfully
success
boolean
Example:

true

message
string
Example:

"Domain deleted successfully"