Documentation

landing.landing.unpublic

landing.landing.unpublic(lid)

The method removes landing page from publication. Returns true or an error otherwise.

Parameters

Parameter Description Available from version
lid Landing page ID

Example

BX24.callMethod(
    'landing.landing.unpublic',
    {
        lid: 351
    },
    function(result)
    {
        if(result.error())
        {
            console.error(result.error());
        }
        else
        {
            console.info(result.data());
        }
    }
);


© «Bitrix24», 2001-2024
Up