Get Transmission Details

This API lets you to obtain the details of a particular transmission.

Note: Transmission refers to a campaign. For example, transmission_id means the campaign's unique ID.

Request Type

  • GET

Request URL

https://campaigns.zoho.com/emailapi/v2/transmission/{transmission_id}

Content-Type

application/json

List of Response Body Attributes

ParametersData TypeDescription
transmission_detailsJSON Object

Contains the metadata and delivery configuration of the requested transmission.

subject

String

The email subject used for the transmission.

from

String

The sender address used for the transmission.

reply_toStringThe reply-to address used for the transmission, if provided.

transmission_name

String

User-defined name of the transmission.

statusStringCurrent delivery status of the transmission. Possible values include (but are not limited to): Sent, Scheduled, Cancelled.
sent_timeLongTimestamp representing when the message was sent (in milliseconds since epoch)
optionsJSON ObjectContains delivery configuration options applied to the transmission.
options.open_trackingStringIndicates whether open tracking was enabled for this transmission.
Values: enabled/disabled
options.click_trackingStringIndicates whether click tracking was enabled for this transmission.
Values: enabled/disabled
options.schedule_atLongTimestamp (in milliseconds) indicating when the transmission is scheduled to be sent.
responseJSON Object

Contains the API-level response information indicating whether the request succeeded or failed.

response.codeIntegerSuccess or failure code.
response.messageStringSuccess or failure message returned by the API.
errorsJSON Array

Contains one or more objects describing the failure. Each error object contains a code and a message.

Possible Error Cases

Error Codes

Description

400018Invalid transmission ID.

Sample Response - Success

Copied{
  "transmission_details": {
    "subject": "Hello $[first_name|Customer]$",
    "from": "aron@zylker.com",
    "reply_to": "aron@reply.zylker.com",
    "transmission_name": "My first Email API Campaign",
    "status": "Sent",
    "sent_time": 1728472166000,
    "options": {
      "open_tracking": "disabled",
      "click_tracking": "disabled"
    }
  },
  "response": {
    "code": 200004,
    "message": "Successfully obtained the transmission details"
  }
}

Sample Response - Failure

Copied{
  "errors": [
    {
      "code": 400018,
      "message": "Invalid transmission ID"
    }
  ]
}