OBJECT

PageConfiguration

Information related to a user's page configuration

link GraphQL Schema definition

1type PageConfiguration {
2
3# Additional information for determining what else to show to a specific user
4menuPath: String
5
6# Page elements as a list of object blocks, null if a page does not exist
7pageElementBlocks: [PageElementBlock!]
8
9# Journey id for a page configuration
10journeyId: String
11
12# Where the user should be redirected, used if a page does not exist
13redirectPath: String
14
15# Used as HTML Page Title
16pageHeader: String
17
18}

link Required by