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.
API key for account management endpoints. Use your api_ prefixed token.
Unique identifier of the message
Successfully retrieved log details
true
Show child attributes