For more information on using API

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

Get the automation's steps flow

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

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>