Member Junction
    Preparing search index...

    Action to retrieve records from a list with optional filtering and pagination.

    // Get all records from a list
    await runAction({
    ActionName: 'Get List Records',
    Params: [
    { Name: 'ListID', Value: 'abc-123-def' }
    ]
    });

    // Get filtered records with pagination
    await runAction({
    ActionName: 'Get List Records',
    Params: [
    { Name: 'ListID', Value: 'abc-123-def' },
    { Name: 'FilterByStatus', Value: 'Active' },
    { Name: 'MaxRecords', Value: 100 },
    { Name: 'IncludeRecordDetails', Value: true }
    ]
    });

    Hierarchy (View Summary)

    Index

    Constructors

    Methods

    Constructors

    Methods