- HTTP request
- Path parameters
- Request body
- Response body
- Authorization Scopes
- EmailInput
- AddressInput
- PhoneInput
Starts the verification process for a location.
HTTP request
POST https://mybusiness.googleapis.com/v4/{name=accounts/*/locations/*}:verify
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
name |
Resource name of the location to verify. |
Request body
The request body contains data with the following structure:
JSON representation | |
---|---|
{ "method": enum ( |
Fields | ||
---|---|---|
method |
Verification method. |
|
languageCode |
The BCP 47 language code representing the language that is to be used for the verification process. |
|
context |
Extra context information for the verification of service businesses. Required for the locations whose business type is CUSTOMER_LOCATION_ONLY. For ADDRESS verification, the address will be used to send out postcard. For other methods, it should be the same as the one that is passed to locations.fetchVerificationOptions. INVALID_ARGUMENT will be thrown if it is set for other types of business locations. |
|
Union field RequestData . User input data for specific method in addition to the display data. The data must match the requested method. Leave it empty if no data is needed. RequestData can be only one of the following: |
||
emailInput |
The input for EMAIL method. |
|
addressInput |
The input for ADDRESS method. |
|
phoneInput |
The input for PHONE_CALL/SMS method |
Response body
If successful, the response body contains data with the following structure:
Response message for Verifications.VerifyLocation.
JSON representation | |
---|---|
{
"verification": {
object ( |
Fields | |
---|---|
verification |
The created verification request. |
Authorization Scopes
Requires one of the following OAuth scopes:
https://www.googleapis.com/auth/plus.business.manage
https://www.googleapis.com/auth/business.manage
For more information, see the OAuth 2.0 Overview.
EmailInput
Input for EMAIL verification.
JSON representation | |
---|---|
{ "emailAddress": string } |
Fields | |
---|---|
emailAddress |
Email address where the PIN should be sent to. An email address is accepted only if it is one of the addresses provided by locations.fetchVerificationOptions. If the |
AddressInput
Input for ADDRESS verification.
JSON representation | |
---|---|
{ "mailerContactName": string } |
Fields | |
---|---|
mailerContactName |
Contact name the mail should be sent to. |
PhoneInput
Input for PHONE_CALL/SMS verification.
JSON representation | |
---|---|
{ "phoneNumber": string } |
Fields | |
---|---|
phoneNumber |
The phone number that should be called or be sent SMS to. It must be one of the phone numbers in the eligible options. |