For more information on using API

GET http://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:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <TotalItems>1</TotalItems>
  <LogAutomationsQueue>
    <ApiLogAutomationQueue>
      <Id>1</Id>
      <CustomerId>1</CustomerId>
      <StepIdCompleted>1</StepIdCompleted>
    </ApiLogAutomationQueue>
    <ApiLogAutomationQueue>
      <Id>1</Id>
      <CustomerId>1</CustomerId>
      <StepIdCompleted>1</StepIdCompleted>
    </ApiLogAutomationQueue>
  </LogAutomationsQueue>
</ApiLogAutomationQueueList>