Member Junction
    Preparing search index...

    Action to update the status of list items in bulk.

    // Update specific records
    await runAction({
    ActionName: 'Update List Item Status',
    Params: [
    { Name: 'ListID', Value: 'abc-123-def' },
    { Name: 'RecordIDs', Value: ['rec1', 'rec2'] },
    { Name: 'NewStatus', Value: 'Complete' }
    ]
    });

    // Update all items with a specific current status
    await runAction({
    ActionName: 'Update List Item Status',
    Params: [
    { Name: 'ListID', Value: 'abc-123-def' },
    { Name: 'CurrentStatus', Value: 'Pending' },
    { Name: 'NewStatus', Value: 'Active' }
    ]
    });

    Hierarchy (View Summary)

    Index

    Constructors

    Methods

    Constructors

    Methods