Workflow additional info (sidedata) API
Warning
This section is still under construction and is subject to changes like naming etc.
This endpoint provides a way to fetch some additional information related to a Workflow. Information like count of goals triggered, started workflow count, unique visitor count, hourly number of visitors etc. can be fetched & displayed in addition to the workflow report diagram.
Endpoint¶
1 | |
URL attributes¶
| Attribute | Type | Required | Description |
|---|---|---|---|
organization_id |
String (UUID) | Required | ID of the organization for which the data is requested |
workflow_id |
String (UUID) | Required | ID of the workflow for which the data is requested |
Payload¶
1 2 3 4 5 6 | |
Payload attributes¶
| Attribute | Type | Required | Description |
|---|---|---|---|
interval |
Interval | Required | Time interval of the query, with start and end being in ISO8601 time format |
Response (page navigation)¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 | |
Response attributes¶
| Attribute | Type | Description |
|---|---|---|
timeframe_stat |
Object | Depending on the interval given, can contain 1 to 2 different attributes, hour_in_day or day_in_week. Both attributes are arrays that contain arrays with format [metric_value, index] with index being the day / hour. With hours the index starts from 0 (range 0 - 23) but with weeks the index starts from 1 (range 1 - 7) |
unique_visitors_count |
Number | Amount of unique visitors |
unique_sessions_count |
Number | Amount of unique sessions |
Response (interaction)¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | |
Response attributes¶
Warning
Some variables may be subject to name changes & add information like
triggered_goals: triggered by IB, when for example an interaction view is shown to the visitoraffected_goals: for example when a cart was locked within 24 hours by a visitor, who interacted
| Attribute | Type | Description |
|---|---|---|
unique_visitors_count |
Number | Amount of unique visitors |
started_workflows_count |
Number | Amount of started workflows |
visitor_purchase_sums |
List of objects | If one or more affected goals are named "System: Visitor purchased" this list will contain total sums grouped by currency. Objects in list will have value & currency attributes |
triggered_goals |
List of objects | Amount of goals that were triggered. Object contains following attributes: uuid, name & metrics |
affected_goals |
List of objects | Amount of outer goals that are related to the workflow. Object contains following attributes: uuid, metrics, & name |