Get tracking emails
The id of the user.
The id of the event.
The country code. This is a two letter country code.
The language code. This is a two letter language code.
The notification type.
The notification channel type.
The email from.
The email to.
The email cc.
The email bcc.
The email subject.
The email body.
Flag to indicate if the email is in test mode.
Filter by keywords.
The tags.
Contains the enums for the status of notifications/emails with the user.
The sort data field to sort. By default, the value is ID.
Specifies the sorting order type for a collection.
The page number of the pagination. Default value is 0.
The page size of the pagination. Default value is 200.
The brand URL of the request. This is used to identify the brand.
YOUR_BRAND_URL
Auth-Key is required to authenticate the request. If missing, the server will return 401 Unauthorized.
YOUR_AUTH_KEY
The request was successful.
The user is not authorized to access the requested resource. The request is missing the required Auth-Key header.
API call exceeded rate limit due to too many requests.
GET /api/v1/tracking-emails HTTP/1.1
Host: protocol.jframework.io
Brand-URL: text
Auth-Key: text
Accept: */*
{
"success": true,
"statusCode": 200,
"message": "The request was successful.",
"data": {
"items": [
{
"id": "sApKpllz4sAplsmzha",
"countryCode": "US",
"languageCode": "en",
"notificationType": "Broadcast",
"notificationChannelType": "Email",
"emailFrom": "[email protected]",
"emailTo": "[email protected]",
"emailCc": "[email protected]",
"emailBcc": "[email protected]",
"emailSubject": "Welcome to JFW!",
"emailBody": "Welcome to JFW API!",
"sentTime": "2025-09-19T04:20:20.6100144Z",
"testMode": false,
"tags": "Welcome, JFW",
"status": "ReadEmailNotification"
}
],
"totalItems": 1,
"pageNumber": null,
"pageSize": null
},
"errors": []
}
Last updated
Was this helpful?