@adcp/client API Reference - v4.19.0
    Preparing search index...

    Interface GetPropertyListRequest

    Request parameters for retrieving a property list with resolved identifiers

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

    Properties

    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

    • Optionalcursor?: string

      Opaque cursor from a previous response to fetch the next page

    context?: ContextObject
    ext?: ExtensionObject