GET
/
outbound
/
logs
curl --request GET \
  --url https://api.jetemail.com/outbound/logs \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "uid": "abc123",
      "action": "QUEUED",
      "message_id": "<string>",
      "sender": "<string>",
      "receiver": "<string>",
      "response": "<string>",
      "user": "<string>",
      "src": "<string>",
      "subject": "<string>",
      "transhost": "<string>",
      "transtype": "<string>",
      "headerFrom": "<string>",
      "from_address": "<string>",
      "to_address": "<string>",
      "date": "<string>",
      "rule_id": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer
default:10

Number of records to return (1-100)

Required range: 1 <= x <= 100
page
integer
default:1

Page number for pagination

Required range: x >= 1
uid
string

Filter by unique identifier

user
string

Filter by username

src
string

Filter by source

subject
string

Filter by email subject

Maximum length: 200
transtype
enum<string>

Filter by transaction type

Available options:
ESMTPSA,
HTTP
from
string

Filter by sender email

to
string

Filter by recipient email

date_start
string

Filter by start date (ISO 8601)

date_end
string

Filter by end date (ISO 8601)

Response

200
application/json
Successfully retrieved logs
success
boolean
Example:

true

data
object[]