@camunda8/sdk
    Preparing search index...

    Interface Token

    The token interface represents the structure of the token returned by the Camunda 8 Identity endpoint. It contains the access token, scope, expiration time, token type, and audience.

    interface Token {
        access_token: string;
        audience: string;
        expires_in: number;
        expiry: number;
        scope: string;
        token_type: string;
    }
    Index

    Properties

    access_token: string
    audience: string
    expires_in: number
    expiry: number
    scope: string
    token_type: string