v1

latestOpenAPI 3.1.0© Copyright Partoo2026-07-26163503484.0 KB
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

statusstring

The status of the response success, warning or error.

message'listing_verified' | 'listing_in_review' | 'listing_disabled' | 'listing_suspended' | 'listing_status_not_found'

OPTIONAL Details of the message. Can be one of the following:

  • listing_verified: The location is already verified (returned with a success status).
  • listing_in_review: The location is already in review for verification (returned with a warning status).
  • listing_disabled: The location is disabled (returned with a error status).
  • listing_suspended: The location is suspended (returned with a error status).
  • listing_status_not_found: The location is not found (returned with a error status).

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"
    }
  ]
}