Member Junction
    Preparing search index...

    Action that validates URLs by checking accessibility, response codes, and basic health checks Provides detailed information about URL status, redirects, and response headers

    // Validate a single URL
    await runAction({
    ActionName: 'URL Link Validator',
    Params: [{
    Name: 'URL',
    Value: 'https://example.com'
    }]
    });

    // Validate multiple URLs
    await runAction({
    ActionName: 'URL Link Validator',
    Params: [{
    Name: 'URLs',
    Value: ['https://example.com', 'https://google.com', 'https://invalid-url-test.com']
    }]
    });

    // Custom timeout and options
    await runAction({
    ActionName: 'URL Link Validator',
    Params: [{
    Name: 'URL',
    Value: 'https://slow-site.com'
    }, {
    Name: 'TimeoutMs',
    Value: 10000
    }, {
    Name: 'FollowRedirects',
    Value: false
    }]
    });

    Hierarchy (View Summary)

    Index

    Constructors

    Methods

    Constructors

    Methods