For more information on using API

GET https://webapi.mymarketing.co.il/api/automationreports/{id}/logautomationqueue

Returns all the contacts that did not finish 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

ApiLogAutomationQueueList

Name

Description

Type

Additional information

total_items

Total of contacts who did not complete the automation

integer
log_automations_queue

List of of contacts who did not complete the automation

Collection of ApiLogAutomationQueue

Response Formats

application/json, text/json

Sample:
{
  "total_items": 1,
  "log_automations_queue": [
    {
      "id": 1,
      "contact_id": 1,
      "step_id_completed": 1
    },
    {
      "id": 1,
      "contact_id": 1,
      "step_id_completed": 1
    }
  ]
}

application/xml, text/xml

Sample:
<ApiLogAutomationQueueList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ActiveTrail.RESTfulApi.Models.AutomationReport">
  <log_automations_queue>
    <ApiLogAutomationQueue>
      <contact_id>1</contact_id>
      <id>1</id>
      <step_id_completed>1</step_id_completed>
    </ApiLogAutomationQueue>
    <ApiLogAutomationQueue>
      <contact_id>1</contact_id>
      <id>1</id>
      <step_id_completed>1</step_id_completed>
    </ApiLogAutomationQueue>
  </log_automations_queue>
  <total_items>1</total_items>
</ApiLogAutomationQueueList>