Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Use cases

Common webhook use cases include the following:

  • Collecting data for data-warehousing

  • Sending notifications to IM clients and pagers (e.g. when new Scenarios become available)

  • Updating state in a system-of-record (e.g. when users complete Scope Scenarios)

See Orchestrating Common Use Cases to see a visualization of webhooks used in connection with other services and components.

...

Code Block
languagegraphql
query {
  webhookTopics {
    nodes {
      key
      version
      disabled_atdisabledAt
    }
  }
}

A topic is disabled if the disable_at field is not null.

...