For more information on using API

GET http://webapi.mymarketing.co.il/api/automations/{id}/FlowTimesStarted

Get the JSON that represents the design of the automation flow in the UI including the data of the given automation

Request Information

URI Parameters

Name

Description

Type

Additional information

id

Automation id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of AutomationFlewsTimesStarted

Name

Description

Type

Additional information

flow_id

integer
from_step_id

integer
to_step_id

integer
times_started

integer

Response Formats

application/json, text/json

Sample:
[
  {
    "flow_id": 1,
    "from_step_id": 1,
    "to_step_id": 1,
    "times_started": 2
  },
  {
    "flow_id": 1,
    "from_step_id": 1,
    "to_step_id": 1,
    "times_started": 2
  }
]

application/xml, text/xml

Sample:
<ArrayOfAutomationFlewsTimesStarted xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ActiveTrail.RESTfulApi.Models">
  <AutomationFlewsTimesStarted>
    <flow_id>1</flow_id>
    <from_step_id>1</from_step_id>
    <times_started>2</times_started>
    <to_step_id>1</to_step_id>
  </AutomationFlewsTimesStarted>
  <AutomationFlewsTimesStarted>
    <flow_id>1</flow_id>
    <from_step_id>1</from_step_id>
    <times_started>2</times_started>
    <to_step_id>1</to_step_id>
  </AutomationFlewsTimesStarted>
</ArrayOfAutomationFlewsTimesStarted>