Actions
POST /api/v1/accounts/{projectId}/actions/{actionId}/approve
Approve a proposed change and enqueue it for apply.
POST /api/v1/accounts/{projectId}/actions/{actionId}/approveApprove a proposed change and enqueue it for apply.
Identical to a click in the dashboard's approval queue. The apply worker treats the row as human-decided, so there is no policy re-check — though the 3x budget hard cap still applies.
Requires a key with write scope or higher.
Returns 200 on success.
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
projectId | path | string | yes | The Google Ads account, as returned by GET /api/v1/accounts. |
actionId | path | string | yes | The proposal id, from GET /accounts/{projectId}/actions. |
Example
curl -X POST "https://bidandscale.com/api/v1/accounts/{projectId}/actions/{actionId}/approve" \
-H "Authorization: Bearer $BIDANDSCALE_API_KEY"