Not-ajour flows
When an organization is flagged as not-ajour (out of compliance with documentation requirements), a not-ajour flow runs to chase down updated documents. These mutations let you pause and restart that flow — useful when you've agreed with the customer to delay follow-up, or want to resume after a pause.
All mutations on this page require a JWT — get one from the homepage first.
Pause a not-ajour flow
Pauses the flow until restartDate. The flow restarts automatically on that date.
mutation pauseNotAjourFlow($input: PauseNotAjourFlowInput!) {
pauseNotAjourFlow(input: $input) {
success
}
}
restartDate is an ISO Date (no time component, e.g. 2026-06-01).
Restart a not-ajour flow
Manually restarts a paused flow before its scheduled restart date.
mutation restartNotAjourFlow($input: RestartNotAjourFlowInput!) {
restartNotAjourFlow(input: $input) {
success
}
}