Ad Conversion Value Rules

List conversion value rules

List saved rules the caller can read. Filter by business with account_id.

get/ad_conversion_value_rules

Query parameters

account_idstring
status'active' | 'paused'
platform'tiktok' | 'meta' | 'google'
resource_idstring

Campaign, ad group, or ad ID. Return rules covering this item, its ancestors, or its descendants.

firstinteger

Number of results to return from the start of the range.

afterstring

Return results after this cursor. Use page_info.end_cursor from the previous response to fetch the next page.

lastinteger

Number of results to return from the end of the range.

beforestring

Return results before this cursor. Use page_info.start_cursor from the previous response to fetch the previous page.

order'created_at'
direction'asc' | 'desc'

Response

Rules

Example response

{
  "data": [
    {
      "account_id": "biz_xxxxxxxxxxxxxx",
      "adjustment_type": "fixed",
      "created_at": "2026-01-01T12:00:00.000Z",
      "events": [
        {
          "event_name": "lead"
        }
      ],
      "fixed_value": {
        "amount": "-2.50",
        "currency": "usd",
        "decimals": 2,
        "display_decimals": 2
      },
      "id": "adcvr_xxxxxxxxxxxxxx",
      "metadata": {},
      "status": "active",
      "targets": [
        {
          "platform": "meta",
          "resource_title": "Shine Time Auto Detailing",
          "scope": "business"
        }
      ],
      "updated_at": "2026-01-01T12:00:00.000Z"
    }
  ]
}

Changes