Member Junction
    Preparing search index...

    Interface AuthorizationRequest

    Request for authorization evaluation

    interface AuthorizationRequest {
        APIKeyId: string;
        ApplicationId: string;
        Context?: Record<string, unknown>;
        Resource: string;
        ScopePath: string;
        UserId: string;
    }
    Index

    Properties

    APIKeyId: string

    The API key ID (from validated key)

    ApplicationId: string

    The application ID making the request

    Context?: Record<string, unknown>

    Optional additional context

    Resource: string

    The specific resource being accessed (e.g., entity name, agent name)

    ScopePath: string

    The scope path being requested (e.g., 'view:run', 'agent:execute')

    UserId: string

    The user ID associated with the API key