AI-generated Key Takeaways
-
Verifies a phone number for a Google Merchant Center account using a verification code.
-
Requires a
verificationId,verificationCode, andphoneVerificationMethodin the request body. -
If successful, the API returns the
verifiedPhoneNumberin the response. -
Updates the
accounts.businessinformation.phoneNumberwith the verified phone number. -
Requires the
https://www.googleapis.com/auth/contentauthorization scope.
Validates verification code to verify phone number for the account. If successful this will overwrite the value of accounts.businessinformation.phoneNumber
. Only verified phone number will replace an existing verified phone number.
HTTP request
POST https://shoppingcontent.googleapis.com/content/v2.1/{merchantId}/accounts/{accountId}/verifyphonenumber
Path parameters
| Parameters | |
|---|---|
merchantId
|
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. |
accountId
|
Required. The ID of the account. |
Request body
The request body contains data with the following structure:
| JSON representation |
|---|
{
"verificationId"
:
string
,
"verificationCode"
:
string
,
"phoneVerificationMethod"
:
enum (
|
| Fields | |
|---|---|
verificationId
|
The verification ID returned by |
verificationCode
|
The verification code that was sent to the phone number for validation. |
phoneVerificationMethod
|
Verification method used to receive verification code. |
Response body
Response message for the accounts.verifyphonenumber method.
If successful, the response body contains data with the following structure:
| JSON representation |
|---|
{ "verifiedPhoneNumber" : string } |
| Fields | |
|---|---|
verifiedPhoneNumber
|
Verified phone number if verification is successful. This phone number can only be replaced by another verified phone number. |
Authorization scopes
Requires one of the following OAuth scopes:
-
https://www.googleapis.com/auth/content
For more information, see the OAuth 2.0 Overview .

