OBJECT

ExtensionToken

The user-specific token for an installed extension on a channel.

link GraphQL Schema definition

1type ExtensionToken {
2
3# The ID of the extension associated with this token.
4extensionID: ID!
5
6# The JWT token for the requesting user.
7jwt: String!
8
9}