For more information on using API

GET http://webapi.mymarketing.co.il/api/automationreports/{id}/SummaryReport

Returns the Campaign Summary report for the requested automation

Request Information

URI Parameters

Name

Description

Type

Additional information

id

Automation id

integer

Required

Body Parameters

None.

Response Information

Resource Description

ApiAutomationSummaryReport

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:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ActiveTrail.RESTfulApi.Models.AutomationReport">
  <bounced>8</bounced>
  <bounced_rate>9.1</bounced_rate>
  <conversions>2</conversions>
  <cto>1.1</cto>
  <links_rate>5.1</links_rate>
  <non_unique_links>3</non_unique_links>
  <non_unique_views>1</non_unique_views>
  <not_open>6</not_open>
  <not_open_rate>7.1</not_open_rate>
  <removals>10</removals>
  <removals_rate>11.1</removals_rate>
  <spam_complaints>12</spam_complaints>
  <spam_complaints_rate>13.1</spam_complaints_rate>
  <total_conversion_value>16.1</total_conversion_value>
  <total_conversions>15</total_conversions>
  <total_sent>14</total_sent>
  <unique_links>4</unique_links>
  <unique_views>1</unique_views>
</ApiAutomationSummaryReport>