API Stability Long-Term

The deleteLogCollectorGroup() GraphQL mutation may be used to delete a Log Collector group.

Syntax

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

graphql
deleteLogCollectorGroup(
      id: string!
   ): boolean!

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

Show:
graphql
mutation {
  deleteLogCollectorGroup( 
     id: "123456789"
  )
}
Example Responses
Show:
json
{
  "data": {
    "deleteLogCollectorGroup": true
  }
}