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