diff --git a/docs/dyn/content_v2_1.accounts.html b/docs/dyn/content_v2_1.accounts.html index 86b8370ffe6..cee61c6b43e 100644 --- a/docs/dyn/content_v2_1.accounts.html +++ b/docs/dyn/content_v2_1.accounts.html @@ -125,12 +125,18 @@
listlinks_next(previous_request, previous_response)
Retrieves the next page of results.
+
+ requestphoneverification(merchantId, accountId, body=None, x__xgafv=None)
Request verification code to start phone verification.
update(merchantId, accountId, body=None, x__xgafv=None)
Updates a Merchant Center account. Any fields that are not provided are deleted from the resource.
updatelabels(merchantId, accountId, body=None, x__xgafv=None)
Updates labels that are assigned to the Merchant Center account by CSS user.
+
+ verifyphonenumber(merchantId, accountId, body=None, x__xgafv=None)
Validates verification code to verify phone number for the account.
authinfo(x__xgafv=None)
@@ -771,6 +777,36 @@ requestphoneverification(merchantId, accountId, body=None, x__xgafv=None)
+ Request verification code to start phone verification. + +Args: + merchantId: string, Required. The ID of the managing account. If this parameter is not the same as accountId, then this account must be a multi-client account and accountId must be the ID of a sub-account of this account. (required) + accountId: string, Required. The ID of the account. (required) + body: object, The request body. + The object takes the form of: + +{ # Request message for the RequestPhoneVerification method. + "languageCode": "A String", # Language code [IETF BCP 47 syntax](https://tools.ietf.org/html/bcp47) (for example, en-US). Language code is used to provide localized `SMS` and `PHONE_CALL`. Default language used is en-US if not provided. + "phoneNumber": "A String", # Phone number to be verified. + "phoneRegionCode": "A String", # Required. Two letter country code for the phone number, for example `CA` for Canadian numbers. See the [ISO 3166-1 alpha-2](https://wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements) officially assigned codes. + "phoneVerificationMethod": "A String", # Verification method to receive verification code. +} + + x__xgafv: string, V1 error format. + Allowed values + 1 - v1 error format + 2 - v2 error format + +Returns: + An object of the form: + + { # Response message for the RequestPhoneVerification method. + "verificationId": "A String", # The verification ID to use in subsequent calls to `verifyphonenumber`. +}+
update(merchantId, accountId, body=None, x__xgafv=None)
Updates a Merchant Center account. Any fields that are not provided are deleted from the resource. @@ -935,4 +971,33 @@Method Details
}
verifyphonenumber(merchantId, accountId, body=None, x__xgafv=None)
+ Validates verification code to verify phone number for the account. + +Args: + merchantId: string, Required. The ID of the managing account. If this parameter is not the same as accountId, then this account must be a multi-client account and accountId must be the ID of a sub-account of this account. (required) + accountId: string, Required. The ID of the account. (required) + body: object, The request body. + The object takes the form of: + +{ # Request message for the VerifyPhoneNumber method. + "phoneVerificationMethod": "A String", # Verification method used to receive verification code. + "verificationCode": "A String", # The verification code that was sent to the phone number for validation. + "verificationId": "A String", # The verification ID returned by `requestphoneverification`. +} + + x__xgafv: string, V1 error format. + Allowed values + 1 - v1 error format + 2 - v2 error format + +Returns: + An object of the form: + + { # Response message for the VerifyPhoneNumber method. + "verifiedPhoneNumber": "A String", # Verified phone number if verification is successful. +}+