SequenceSteps
Get details of sequence steps.
Select
The add-in will use the Outreach API to process WHERE clause conditions built with the following columns and operators. The rest of the filter is executed client side within the add-in.
- Id supports the '=,IN,>=,<=,>,<' operators.
- CreatedAt supports the '=,>=,<=,>,<' operators.
- OrderValue supports the '=,IN,>=,<=,>,<' operators.
- StepType supports the '=,IN' operators.
- UpdatedAt supports the '=,>=,<=,>,<' operators.
SELECT * FROM SequenceSteps WHERE Id = 1 SELECT * FROM SequenceSteps WHERE Id IN (1, 2) SELECT * FROM SequenceSteps WHERE Id >= 1 SELECT * FROM SequenceSteps WHERE Id <= 1 SELECT * FROM SequenceSteps WHERE Id > 1 SELECT * FROM SequenceSteps WHERE Id < 2 SELECT * FROM SequenceSteps WHERE CreatedAt <= '2022-02-25 01:02:02.0' SELECT * FROM SequenceSteps WHERE CreatedAt >= '2022-01-25 01:02:02.0 ' AND createdAt <= '2022-02-25 01:02:02.0' SELECT * FROM SequenceSteps WHERE CreatedAt >= '2022-02-25 01:02:02.0' SELECT * FROM SequenceSteps WHERE CreatedAt = '2022-02-25 01:02:02.0' SELECT * FROM SequenceSteps WHERE CreatedAt < '2022-02-25 01:02:02.0' SELECT * FROM SequenceSteps WHERE CreatedAt > '2022-02-25 01:02:02.0' SELECT * FROM SequenceSteps WHERE StepType = 'task' SELECT * FROM Stages WHERE OrderValue > 3 AND OrderValue < 7
Columns
| Name | Type | Description |
| Id [KEY] | Integer | Id of sequence step. |
| BounceCount | Integer | The total count of bounced mailings during this sequence step. |
| ClickCount | Integer | The total count of clicked mailings from this sequence step. |
| CreatedAt | Datetime | The date and time the sequence step was created. |
| Date | Datetime | The date this step will activate. |
| DeliverCount | Integer | The total count of delivered mailings from this sequence step. |
| DisplayName | String | A human-readable display name that captures the steps type and OrderValue. |
| FailureCount | Integer | The total count of failed mailings from this sequence step. |
| Interval | Integer | The interval in minutes. |
| NegativeReplyCount | Integer | The total count of negative reply mailings from this sequence step. |
| NeutralReplyCount | Integer | The total count of neutral reply mailings from this sequence step. |
| OpenCount | Integer | The total count of opened mailings from this sequence step. |
| OptOutCount | Integer | The total count of opted out mailings from this sequence step. |
| OrderValue | Integer | The steps display Order value within its sequence. |
| PositiveReplyCount | Integer | The total count of positive reply mailings from this sequence step. |
| ReplyCount | Integer | The total count of replied mailings from this sequence step. |
| ScheduleCount | Integer | The total count of scheduled mailings from this sequence step. |
| StepType | String | The steps type. Possible values are 'auto_email', 'manual_email', 'call', 'task', etc. |
| TaskAutoskipDelay | Integer | The optional interval in seconds from when tasks created by this sequence step are overdue until they are automatically skipped. |
| TaskNote | String | An optional note to associate with created tasks. |
| UpdatedAt | Datetime | The date and time the sequence step was last updated. |
| LinksSelf | String | Link self. |
| CreatorId | Integer | Creator Id. |
| CreatorType | String | Creator type. |
| SequenceId | Integer | Sequence Id. |
| SequenceType | String | Sequence type. |
| TaskPriorityId | Integer | Task priority Id. |
| TaskPriorityType | String | Task priority type. |
| UpdaterId | Integer | Updater Id. |
| UpdaterType | String | Updater type. |
| Type | String | Type. |