帳單設定是 Google Ads 帳戶與付款帳戶之間的帳戶層級連結 (也稱為月結單設定),可有效決定帳單設定帳戶預算所產生的費用由誰支付。每個付款帳戶都會對應一張月結單。
關於付款帳戶
每個 BillingSetup
都會標示付款帳戶,該帳戶會根據帳戶預算產生的費用開立月結單。這個付款帳戶會與最終負責收費的付款資料相關聯。
帳單設定包含 payments_account
欄位和一組 payments_account_info
欄位,用於識別正在使用的付款帳戶,包括:
payments_account_info.payments_account_id
:16 位數 ID,用於識別與帳單設定相關聯的付款帳戶。payments_account_info.payments_account_name
:與帳單設定相關聯的付款帳戶名稱。這個名稱會列印在月結單上。payments_account_info.payments_profile_id
:12 位數 ID,用於識別與帳單設定相關聯的付款資料。
如果 Google Payments 帳戶符合合併結帳資格,您可以將多個 Google Ads 帳戶設為使用相同的基礎 Google Payments 帳戶,將這些帳戶歸入同一張月結單。
建立新的帳單設定
您可以將新的帳單設定連結至現有的付款帳戶,或同時建立的付款帳戶。
使用現有的付款帳戶
如要連結現有付款帳戶,請將 payments_account
設為有效付款帳戶的資源 ID。不過,請勿修改 payments_account_info
。
您可以使用 PaymentsAccountService.ListPaymentsAccounts
方法列出可用的付款帳戶。系統傳回的 PaymentsAccounts
取決於您用於驗證的管理員帳戶。
對於每個 PaymentsAccount
,其付費管理員的 ID 會位於 paying_manager_customer
欄位。
使用新的付款帳戶
如要連結至新的 Google Payments 帳戶,請在 payments_account_info
中設定下列欄位 (請勿設定 payments_account
):
以下範例說明如何使用現有的付款資料 ID 建立新的帳單設定。如上所述,這也會建立名為 My New Payments Account
的新付款帳戶。
BillingSetup bsetup = BillingSetup.newBuilder()
.setPaymentsAccountInfo(PaymentsAccountInfo.newBuilder()
.setPaymentsAccountName("My New Payments Account")
.setPaymentsProfileId("1234-5678-9012")
.build())
.setStartTimeType(TimeType.NOW)
.build();
BillingSetupOperation op = BillingSetupOperation.newBuilder().setCreate(bsetup).build();
try (BillingSetupServiceClient billingSetupServiceClient = googleAdsClient
.getBillingSetupServiceClient()) {
MutateBillingSetupResponse response =
billingSetupServiceClient.mutateBillingSetup(Long.toString(customerId), op);
}
如果這是首次將帳單設定加進 Google Ads 帳戶,系統會使用參照的付款資料,為客戶啟用帳單功能。
帳單設定狀態
新的 BillingSetup
執行個體必須經過核准才能生效。在此之前,其 status
會處於 PENDING
狀態。
BillingSetup
可以是下列任一 status
:
帳單設定狀態 | 說明 |
---|---|
PENDING |
待審核。 |
APPROVED_HELD |
已核准,但對應的第一筆預算尚未核准。這項設定只適用於月結付款的帳單。 |
APPROVED |
設定已獲核准。 |
CANCELLED |
使用者在核准前取消設定。 |
擷取帳戶的帳單設定
與 Google Ads API 中的大多數其他實體一樣,您可以使用 Google Ads 查詢語言查詢 GoogleAdsService.SearchStream
,並指定要傳回的欄位,藉此擷取 BillingSetup
。
取得 BillingSetup
的參照後,您可以使用該參照建立 AccountBudgetProposal
,如「帳戶預算」一文所述。
取消待處理的帳單設定
尚未生效的 BillingSetup
可以使用移除作業取消。只有在 status
為 PENDING
,或是APPROVED
在未來某個時間點開始時,才能取消帳單設定。