Get tracking emails

Get the list of tracking emails.

get
Query parameters
UserIdstringOptional

The id of the user.

EventIdstringOptional

The id of the event.

CountryCodestringOptional

The country code. This is a two letter country code.

LanguageCodestringOptional

The language code. This is a two letter language code.

Typestring · enumOptional

The notification type.

Possible values:
NotificationChannelTypestring · enumOptional

The notification channel type.

Possible values:
EmailFromstringOptional

The email from.

EmailTostringOptional

The email to.

EmailCcstringOptional

The email cc.

EmailBccstringOptional

The email bcc.

EmailSubjectstringOptional

The email subject.

EmailBodystringOptional

The email body.

TestModebooleanOptional

Flag to indicate if the email is in test mode.

KeywordsstringOptional

Filter by keywords.

TagsstringOptional

The tags.

Statusstring · enumOptional

The status of the tracking email.

Possible values:
SortDataFieldstringOptional

The sort data field of the pagination.

SortOrderstringOptional

The sort order of the pagination.

PageNumberinteger · int32Optional

The page number of the pagination. Default value is 0.

PageSizeinteger · int32Optional

The page size of the pagination. Default value is 200.

Header parameters
Brand-URLstringRequired

The brand URL of the request. This is used to identify the brand.

Example: YOUR_BRAND_URL
Auth-KeystringRequired

This is used to authenticate the request. If the request is not authenticated, the server will return a 401 Unauthorized response.

Example: YOUR_AUTH_KEY
Responses
200
The request was successful.
application/json
get
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": "System",
        "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-06-23T06:56:00.7517039Z",
        "testMode": false,
        "tags": "Welcome, JFW",
        "status": "ReadEmailNotification"
      }
    ],
    "totalItems": 1,
    "pageNumber": null,
    "pageSize": null
  },
  "errors": []
}

Last updated

Was this helpful?