Journey

Use the journey query to get the information of the journey set via console.

Arguments

ArgumentTypeDescription

assistanceId

ID

Id of the assistant.

Available fields

FieldTypeDescription

id

ID

Id of Journey.

sendWelcomeMessage

Boolean!

Set to True to send a welcome message when the user is onboarded, otherwise False.

welcomeMessage

String

Sets the welcome message.

dayJourney

[dayJourneyType]

Example

query{
  journey(assistantId:"QXNzaXN0YW50OjMyNDk0WZjLTQ0NzQtNDkzYS1hMWYxLTZiMTZmNjdZmZhNQ=="){
    journey{
      id
      sendWelcomeMessage
      welcomeMessage
      dayJourney{
        id
        interactions{
          id
          goal
          interaction
        }
        skipped
      }
    }
  }
}

Last updated