Skip to main content
GET /api/v2/buyer/plan-suggestion-sets Lists the plan suggestion sets for your account, newest activity first. Filter on status=AWAITING_APPROVAL to see only the decisions outstanding. See plan suggestion sets for what a set is and why it is decided as a whole.
The list reports each set’s planMediaBuyCount — the number of media buys the optimizer declared for the run — but not its per-media-buy breakdown. That count is a declaration, not a membership count: a set still awaiting messages can declare four and have none yet. Read a single set when you need to see where the money goes.

Request

Parameters

Response

netAllocationDelta is in minor units of budgetCurrency — cents for USD, whole yen for JPY — and is "0" for any set eligible to apply, because the transfers inside it cancel out. It is null on a set that is not complete, since there is nothing balanced to report yet. Every allocation figure travels as a string, and that is not because the values are too large for a JSON number — most are comfortably inside the exact integer range. They are stored as int64, and the driver surfaces int64 as a decimal string so no value can ever be silently rounded on the way out. Keep them as strings or parse to a big-integer type; do not route them through a float.