Skip to content

Ik ga (responders)

Interne GraphQL-queries: Ik ga (responders). Vereist authenticatie.

Endpoint: POST https://graphql.persmonitor.nl/graphql

Intern · VPN

Deze pagina's zijn op productie alleen via VPN bereikbaar onder /internal/.


alertResponders

List on-the-way responders for the current organization. Requires login. Filter by message, dossier, and/or monitor.

Return type: [AlertResponder!]!

Authenticatie: Organisatielid

Argumenten:

ArgumentTypeVerplichtBeschrijving
messageUuidStringNeeFilter by P2000 message UUID.
dossierUuidStringNeeFilter by P2000 dossier UUID.
monitorUuidStringNeeFilter by monitor UUID.
statusStringNeeOptional status filter: going or cancelled.

Voorbeeld:

graphql
query AlertResponders(
  $messageUuid: String
  $dossierUuid: String
  $monitorUuid: String
) {
  alertResponders(messageUuid: $messageUuid, dossierUuid: $dossierUuid, monitorUuid: $monitorUuid) {
    # selecteer velden uit het return type
  }
}