@adcp/client API Reference - v3.11.2
    Preparing search index...

    Interface Account

    Account billed for this media buy. Includes advertiser, billing proxy (if any), and rate card applied.

    interface Account {
        account_id: string;
        name: string;
        advertiser?: string;
        billing_proxy?: string;
        status: "active" | "suspended" | "closed";
        rate_card?: string;
        payment_terms?: string;
        credit_limit?: { amount: number; currency: string };
        ext?: ExtensionObject;
    }
    Index

    Properties

    account_id: string

    Unique identifier for this account

    name: string

    Human-readable account name (e.g., 'Coke', 'Coke c/o Publicis')

    advertiser?: string

    The advertiser whose rates apply to this account

    billing_proxy?: string

    Optional intermediary who receives invoices on behalf of the advertiser (e.g., agency)

    status: "active" | "suspended" | "closed"

    Account status

    rate_card?: string

    Identifier for the rate card applied to this account

    payment_terms?: string

    Payment terms (e.g., 'net_30', 'prepay')

    credit_limit?: { amount: number; currency: string }

    Maximum outstanding balance allowed

    ext?: ExtensionObject