
GET http://webapi.mymarketing.co.il/api/automationreports/{id}/SummaryReport
Returns email campaigns' summary reports in a specific automation
Request Information
URI Parameters
Name
Description
Type
Additional information
id
Automation id. Can be found using the endpoint "Get account's automations" or in the UI (go to Automations->Automations Lists->click on the automation's reports -> you'll find the id int the URL)
integer
Required
Body Parameters
None.
Response Information
Resource Description
Name
Description
Type
Additional information
non_unique_views
integer
unique_views
integer
cto
decimal number
conversions
integer
non_unique_links
integer
unique_links
integer
links_rate
decimal number
not_open
integer
not_open_rate
decimal number
bounced
integer
bounced_rate
decimal number
removals
integer
removals_rate
decimal number
spam_complaints
integer
spam_complaints_rate
decimal number
total_sent
integer
total_conversions
integer
total_conversion_value
decimal number
Response Formats
application/json, text/json
Sample:
{ "non_unique_views": 1, "unique_views": 1, "cto": 1.1, "conversions": 2, "non_unique_links": 3, "unique_links": 4, "links_rate": 5.1, "not_open": 6, "not_open_rate": 7.1, "bounced": 8, "bounced_rate": 9.1, "removals": 10, "removals_rate": 11.1, "spam_complaints": 12, "spam_complaints_rate": 13.1, "total_sent": 14, "total_conversions": 15, "total_conversion_value": 16.1 }
application/xml, text/xml
Sample:
<ApiAutomationSummaryReport xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <NonUniqueViews>1</NonUniqueViews> <UniqueViews>1</UniqueViews> <CTO>1.1</CTO> <Conversions>2</Conversions> <NonUniqueLinks>3</NonUniqueLinks> <UniqueLinks>4</UniqueLinks> <LinksRate>5.1</LinksRate> <NotOpen>6</NotOpen> <NotOpenRate>7.1</NotOpenRate> <Bounced>8</Bounced> <BouncedRate>9.1</BouncedRate> <Removals>10</Removals> <RemovalsRate>11.1</RemovalsRate> <SpamComplaints>12</SpamComplaints> <SpamComplaintsRate>13.1</SpamComplaintsRate> <TotalSent>14</TotalSent> <TotalConversions>15</TotalConversions> <TotalConversionValue>16.1</TotalConversionValue> </ApiAutomationSummaryReport>