API Stability Long-Term

The deleteLogCollectorConfiguration() GraphQL mutation may be used to delete a Log Collector configuration.

Syntax

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

graphql
deleteLogCollectorConfiguration(
      configId: string!, 
      versionId: Int!
   ): boolean!

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

Show:
graphql
mutation {
  deleteLogCollectorConfiguration( 
         configId: "123456789",
         versionId: 24
  )
}
Example Responses
Show:
json
{
  "data": {
    "deleteLogCollectorConfiguration": true
  }
}