API Stability Long-Term

The deleteIdentityProvider() GraphQL mutation may be used to delete an identity provider in LogScale. This is a root operation.

For more information on identity providers, see the Authentication & Identity Providers documentation page.

Syntax

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

graphql
deleteIdentityProvider(
     id: string!
   ): boolean!

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

Show:
graphql
mutation {
  deleteIdentityProvider(
       id: "KpuUskKvIJrGSXunEQZ09kU1"
  )
}
Example Responses
Show:
json
{
  "data": {
    "deleteIdentityProvider": true
  }
}