API Stability Long-Term

The unassignIngestToken() GraphQL mutation may be use to disassociate an ingest token with an assigned parser in LogScale.

For more information on ingest tokens, see the Ingest Tokens documentation page.

Syntax

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

graphql
unassignIngestToken(
     repositoryName: string!
     tokenName: string!
   ): UnassignIngestTokenMutation!

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

Show:
graphql
mutation {
  unassignIngestToken(
    repositoryName: "humio",
    tokenName: "my-token"
  )
  { repository { name } }
}

Returned Datatypes

The returned datatype UnassignIngestTokenMutation has its own parameters. Below is a list of them along with their datatypes and a description of each:

Table: UnassignIngestTokenMutation

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: Oct 4, 2024
repositoryRepositoryyes Long-TermThe repository for the unassigned token mutation. See Repository.