ChemPal Documentation - v1.6.0
    Preparing search index...

    Interface VWRTokenResponse

    OAuth token response from the VWR (Avantor) authorization server. Returned by POST /authorizationserver/oauth/token.

    const token: VWRTokenResponse = {
    access_token: "PBPYm7hlpLqjKwN4s9H3HRLBNNU",
    token_type: "bearer",
    expires_in: 39047,
    scope: "openid",
    };
    interface VWRTokenResponse {
        access_token: string;
        token_type: string;
        expires_in: number;
        scope?: string;
    }
    Index

    Properties

    access_token: string

    Bearer access token used in the Authorization header of subsequent calls.

    token_type: string

    Token type, always "bearer" for this API.

    expires_in: number

    Lifetime of the token in seconds.

    scope?: string

    OAuth scope granted to the token.