API Stability Long-Term

The deleteIngestListener() GraphQL mutation may be used to delete an ingest listener in LogScale.

For more information on ingest listeners, see the Ingest Listeners documentation page. You may also want to look at the Ingesting Data page for related information.

Syntax

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

graphql
deleteIngestListener(
      id: string!
   ): BooleanResultType!

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

Show:
graphql
mutation {
  deleteIngestListener(
       id: "peJ2jIJrGSXunEQZ09kU1"
  )
}
Example Responses
Show:
json
{
  "data": {
    "deleteIngestListener": true
  }
}

Returned Datatypes

BooleanResultType has a simple, boolean parameter. See the example above to understand better.

Table: BooleanResultType

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 24, 2024
resultsbooleanyes Long-TermWhether the mutation was performed.