GET
/
api
/
v1
/
campaign
/
report
/
email
/
{messageId}
Get Email Message Report
curl --request GET \
  --url https://api.zixflow.com/api/v1/campaign/report/email/{messageId} \
  --header 'Authorization: Bearer <token>'
{
  "status": true,
  "message": "Successfully fetched",
  "data": {
    "accountId": "652e5068c33fe15059e5s020",
    "messageId": "66e120d1b9ee33b6ba00fsd7",
    "campaignId": "66e120d1b9eht5059e5e01d",
    "status": "SENT",
    "statusAt": "2024-09-11T04:47:16.000Z",
    "destination": "test@gmail.com",
    "remark": ""
  }
}

Path Params

messageId
string
required
Enter the message ID that you received when sending the campaign.

Response

status
boolean
Indicates whether the call was successful. true if successful, false if not.
message
string
success or error response message
data
array_object
The contents of uploaded file
{
  "status": true,
  "message": "Successfully fetched",
  "data": {
    "accountId": "652e5068c33fe15059e5s020",
    "messageId": "66e120d1b9ee33b6ba00fsd7",
    "campaignId": "66e120d1b9eht5059e5e01d",
    "status": "SENT",
    "statusAt": "2024-09-11T04:47:16.000Z",
    "destination": "test@gmail.com",
    "remark": ""
  }
}