OBJECT

JourneyTask

Represents a task in the journey.

link GraphQL Schema definition

1type JourneyTask {
2
3# Unique identifier for the journey task.
4id: ID
5
6# Type of the journey task.
7type: JourneyTaskType
8
9# Name of the journey task.
10name: String
11
12# Instructions for completing the journey task.
13instructions: String
14
15# Roles assigned to the journey task.
16assignmentRoles: [JourneyTaskAssignmentRole]
17
18# IDs of teams assigned to the journey task.
19assignmentTeamIds: [ID]
20
21# IDs of users assigned to the journey task.
22assignmentUserIds: [ID]
23
24# Files associated with the journey task.
25files: [JourneyTaskFile]
26
27# Collection of items for FILE_UPLOAD tasks.
28collection: Collection
29
30# Deprecated collection items. Use taskCollectionItems instead.
31collectionItems: [JourneyTaskCollectionItem] @deprecated( reason: "Use taskCollectionItems instead" )
32
33# Collection items for the journey task.
34taskCollectionItems: [CollectionItem]
35
36# Properties of the user to be filled for PROFILE_DATA tasks.
37userPropertiesToFill: ProfileSectionProperties
38
39# Date when the journey task was completed.
40completedAt: Date
41
42# Indicates if the journey task is completed.
43isCompleted: Boolean
44
45}