API Stability Short-Term

The validateAccessToken() GraphQL query field is used to validate a given access token.

Syntax

Below is the syntax for the validateAccessToken() query field:

graphql
validateAccessToken(
      accessToken: string!
   ): string!

There are no special datatypes for this query field.

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

Show:
graphql
query {
  validateAccessToken(accessToken: 
    "0U3ySo0mVIgMsRR1XSPhHxoNnLpI3U1A~dmLr436nTEBjUzBpdLEUEyreQxH8GdFYmlw6Q3d9RThO"
  )
}