API Stability Long-Term

The deleteScheduledReport() GraphQL mutation may be used to delete a scheduled report.

Syntax

Below is the syntax for the deleteScheduledReport() mutation field:

graphql
deleteScheduledReport(
      input: DeleteScheduledReportInput!
   ): boolean!

Below is an example of how this mutation field might be used:

Show:
graphql
mutation {
  deleteScheduledReport( input: {
         viewName: "humio",
         id: "5xn2djAxMHiFPEWnbXTtg6IS5lKggn3f"
  } )
}
Example Responses
Show:
json
{
  "data": {
    "deleteScheduledReport": true
  }
}

Given Datatypes

For DeleteScheduledReportInput, there are two parameters. Below are descriptions of them:

Table: DeleteScheduledReportInput

ParameterTypeRequiredDefaultStabilityDescription
Some arguments may be required, as indicated in the Required column. For some fields, this column indicates that a result will always be returned for this column.
Table last updated: Sep 18, 2024
idstringyes  The unique identifier of the scheduled report.
viewNamestringyes  The name of the view of the scheduled report.