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

    Interface CreatePropertyListRequest

    Request parameters for creating a new property list

    interface CreatePropertyListRequest {
        adcp_major_version?: number;
        account?: AccountReference;
        name: string;
        description?: string;
        base_properties?: BasePropertySource[];
        filters?: PropertyListFilters;
        brand?: BrandReference;
        idempotency_key: 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

    name: string

    Human-readable name for the list

    description?: string

    Description of the list's purpose

    base_properties?: BasePropertySource[]

    Array of property sources to evaluate. Each entry is a discriminated union: publisher_tags (publisher_domain + tags), publisher_ids (publisher_domain + property_ids), or identifiers (direct identifiers). If omitted, queries the agent's entire property database.

    idempotency_key: string

    Client-generated unique key for this request. Prevents duplicate property list creation on retries. MUST be unique per (seller, request) pair to prevent cross-seller correlation. Use a fresh UUID v4 for each request.

    16

    255

    ^[A-Za-z0-9_.:-]{16,255}$

    context?: ContextObject
    ext?: ExtensionObject