OBJECT

JourneyTemplateTask

link GraphQL Schema definition

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