@dvelop-sdk
    Preparing search index...

    Interface DvelopContext

    Defines a common d.velop context used across all requests.

    interface DvelopContext {
        authSessionId?: string;
        requestId?: string;
        requestSignature?: string;
        systemBaseUri?: string;
        tenantId?: string;
        traceContext?: TraceContext;
    }
    Index

    Properties

    authSessionId?: string

    AuthSessionId used for authorization

    requestId?: string

    RequestId used to track coherent requests over multiple apps

    requestSignature?: string

    Signature assigned by the app-router. The requestSignature should be validated for every request when recieving calls from the d.velop cloud. Refer to the d.velop basics tenant header section for more information.

    systemBaseUri?: string

    SystemBaseUri of a tenant

    tenantId?: string

    Id of a tenant

    traceContext?: TraceContext