OBJECT
JourneyTemplateTask
link GraphQL Schema definition
1 type JourneyTemplateTask { 2 3 # Unique identifier for the journey template task. 4 : ID 5 6 # Type of the journey task. 7 : JourneyTaskType 8 9 # Name of the journey template task. 10 : String 11 12 # Instructions or details for the journey template 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 template task. 25 : [JourneyTemplateTaskFile] 26 27 # User profile properties to be filled, applicable for PROFILE_DATA tasks. 28 : ProfileSectionProperties 29 30 }