Skip to content

Support

Interne GraphQL-queries: Support. Vereist authenticatie.

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

Intern · VPN

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


mySupportTickets

All support tickets for an organization. Requires auth, membership, and a paid subscription.

Return type: [SupportTicket]!

Authenticatie: Organisatielid

Argumenten:

ArgumentTypeVerplichtBeschrijving
organizationOrganizationRef!JaOrganisatie-selectie, bijv. { uuid }.

Voorbeeld:

graphql
query MySupportTickets {
  mySupportTickets(organization: $organization) {
    # selecteer velden uit het return type
  }
}

supportTicket

Single support ticket with all messages. Requires auth; user must be member of the ticket's organization.

Return type: SupportTicket

Authenticatie: Organisatielid

Argumenten:

ArgumentTypeVerplichtBeschrijving
ticketSupportTicketRef!JaTicket-selectie, bijv. { uuid }.

Voorbeeld:

graphql
query SupportTicket {
  supportTicket(ticket: $ticket) {
    # selecteer velden uit het return type
  }
}