vk-io
    Preparing search index...

    Interface AdsGetAdsLayoutParams

    interface AdsGetAdsLayoutParams {
        account_id: number;
        ad_ids?: string;
        campaign_ids?: string;
        client_id?: number;
        include_deleted?: number | boolean;
        limit?: number;
        offset?: number;
        only_deleted?: number | boolean;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any
    Index

    Properties

    account_id: number

    Advertising account ID.

    ad_ids?: string

    Filter by ads. Serialized JSON array with ad IDs. If the parameter is null, all ads will be shown.

    campaign_ids?: string

    Filter by advertising campaigns. Serialized JSON array with campaign IDs. If the parameter is null, ads of all campaigns will be shown.

    client_id?: number

    'For advertising agencies.' ID of the client ads are retrieved from.

    include_deleted?: number | boolean

    Flag that specifies whether archived ads shall be shown. *0 - show only active ads,, *1 - show all ads.

    limit?: number

    Limit of number of returned ads. Used only if 'ad_ids' parameter is null, and 'campaign_ids' parameter contains ID of only one campaign.

    offset?: number

    Offset. Used in the same cases as 'limit' parameter.

    only_deleted?: number | boolean

    Flag that specifies whether to show only archived ads: *0 - show all ads,, *1 - show only archived ads. Available when include_deleted flag is *1