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": "<[email protected]>",
      "response": "250 2.0.0 Ok: queued",
      "user": "smtp_user1",
      "from_address": "[email protected]",
      "to_address": "[email protected]",
      "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

The response is of type object.