cURL
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" } ] }
Retrieves detailed log information for a specific message UID. This will only return data about whether the email was delivered.
Enter your Bearer token in the format "Bearer {token}"
Unique identifier of the message
Successfully retrieved log details
true
Show child attributes
Unique identifier
"abc123"
Action taken on the message
"ACCEPTED"
Email message ID
"<[email protected]>"
Server response
"250 2.0.0 Ok: queued"
Username
"smtp_user1"
Sender email address
"[email protected]"
Recipient email address
Transaction date
"2024-03-20T15:30:00Z"
MX server used
"mx.recipient.com"
Host server name
"outbound1.server.local"
IP address used for sending
"192.168.1.1"