Journey Status
Update the status of a "day" on a journey
Use the updateJourneyStatusMutation
mutation to update the status of "day" on a journey.
Argument
Required
Type
status
True
JourneyStatus enum. CLOSE, OPEN, FINISH
mutation {
updateJourneyStatus(
journeyId: "UHJvZ3JhbTowYWQ0ZTc3YS04ZWRhLTRlOWItYWM4ZS0xYzg0YTJlOGJiNDI="
status: FINISH
) {
success
}
}
Last updated
Was this helpful?