GET
/
outbound
/
logs
/
uid
curl --request GET \
  --url https://api.jetemail.com/outbound/logs/uid \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "uid": "abc123",
      "action": "ACCEPTED",
      "message_id": "<abc123@server.local>",
      "response": "250 2.0.0 Ok: queued",
      "user": "smtp_user1",
      "from_address": "sender@example.com",
      "to_address": "recipient@example.com",
      "date": "2024-03-20T15:30:00Z",
      "mx": "mx.recipient.com",
      "host": "outbound1.server.local",
      "outbound_ip": "192.168.1.1"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

uid
string
required

Unique identifier of the message

Response

200
application/json
Successfully retrieved log details
success
boolean
Example:

true

data
object[]