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 # Collection items for the journey task. 31 : [CollectionItem] 32 33 # Properties of the user to be filled for PROFILE_DATA tasks. 34 : ProfileSectionProperties 35 36 # Date when the journey task was completed. 37 : Date 38 39 # Indicates if the journey task is completed. 40 : Boolean 41 42 }