Google
Fetch Google Location Verification Options
This endpoint retrieves verification options for a specific Google location identified by google_location_id. It requires authentication and authorization to access. The user must have at least the role of a BUSINESS_MANAGER to use this endpoint.
Note that the response can return an empty options list, this can mean two things:
- There are really no verification options available for this location.
- Video verification is possible but not implemented through the API. In this case, you should ask the user to manually verify.
get/verifications/google-locations/{google_location_id}/options
Path parameters
google_location_idstring required
Google location unique id on Partoo
Response
OK
Example response
{
"status": "success",
"options": [
{
"method": "PHONE_CALL",
"phone_number": "+33187662490",
"email": "email.api@partoo.fr",
"full_name": "John Doe",
"full_address": "190 Rue Championnet, 75018 Paris",
"expected_delivery_days": 2,
"status": "AVAILABLE"
}
]
}