@adcp/sdk API Reference - v7.9.0
    Preparing search index...

    Interface GetPropertyListRequest

    Request parameters for retrieving a property list with resolved identifiers

    interface GetPropertyListRequest {
        adcp_major_version?: number;
        list_id: string;
        account?: AccountReference;
        resolve?: boolean;
        pagination?: { max_results?: number; cursor?: string };
        context?: ContextObject;
        ext?: ExtensionObject;
    }
    Index

    Properties

    adcp_major_version?: number

    The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.

    1

    99

    list_id: string

    ID of the property list to retrieve

    resolve?: boolean

    Whether to apply filters and return resolved identifiers (default: true)

    pagination?: { max_results?: number; cursor?: string }

    Pagination parameters. Uses higher limits than standard pagination because property lists can contain tens of thousands of identifiers.

    Type Declaration

    • Optionalmax_results?: number

      Maximum number of identifiers to return per page

      1

      10000

    • Optionalcursor?: string

      Opaque cursor from a previous response to fetch the next page

    context?: ContextObject
    ext?: ExtensionObject