Member Junction
    Preparing search index...

    Action that retrieves a list of configured file storage accounts.

    This action returns storage accounts that are configured in the enterprise model, along with their associated provider information. Storage accounts link to providers (Google Drive, Dropbox, etc.) and credentials managed at the org level.

    This is useful for AI agents to discover what storage accounts are available before attempting to search or access files.

    // Get all available storage accounts
    await runAction({
    ActionName: 'List Storage Accounts',
    Params: []
    });

    // Get only accounts that support search
    await runAction({
    ActionName: 'List Storage Accounts',
    Params: [{
    Name: 'SearchSupportedOnly',
    Value: true
    }]
    });

    Hierarchy (View Summary)

    Index

    Constructors

    Methods