Skip to main content
GET
/
place_action_links
Get Place Action Links
curl --request GET \
  --url https://api.partoo.co/v2/place_action_links \
  --header 'x-APIKey: <api-key>'
{
  "place_action_links": [
    {
      "gmb_id": "APPOINTMENT",
      "name": "Appointment links"
    },
    {
      "gmb_id": "DINING_RESERVATION",
      "name": "Reservations links"
    },
    {
      "gmb_id": "FOOD_DELIVERY",
      "name": "Food delivery links"
    },
    {
      "gmb_id": "FOOD_ORDERING",
      "name": "Food ordering links"
    },
    {
      "gmb_id": "FOOD_TAKEOUT",
      "name": "Food takeout links"
    },
    {
      "gmb_id": "ONLINE_APPOINTMENT",
      "name": "Online appointment links"
    },
    {
      "gmb_id": "SHOP_ONLINE",
      "name": "Shop Online links"
    }
  ]
}

Authorizations

x-APIKey
string
header
required

The authentication system on Partoo API is using API Key that should be put in the header of the request (the name of the header is x-APIKey). An api_key is linked to a user. This user's role will give you different access level to the API features.

Query Parameters

lang
enum<string>

Preferred language for place action links. If no language is provided, the user's default language will be used. If the user's default language is unavailable, the country's primary language will be used.

Available options:
fr,
en,
es,
it,
pt-br,
de,
ar,
nl,
pl,
cs,
ca,
sk,
pt,
lv,
ro,
bg,
hu
Example:

"fr"

Response

OK

List of available Place Action Links

Example:
[
{
"gmb_id": "APPOINTMENT",
"name": "Appointment links"
},
{
"gmb_id": "DINING_RESERVATION",
"name": "Reservations links"
},
{
"gmb_id": "FOOD_DELIVERY",
"name": "Food delivery links"
},
{
"gmb_id": "FOOD_ORDERING",
"name": "Food ordering links"
},
{
"gmb_id": "FOOD_TAKEOUT",
"name": "Food takeout links"
},
{
"gmb_id": "ONLINE_APPOINTMENT",
"name": "Online appointment links"
},
{
"gmb_id": "SHOP_ONLINE",
"name": "Shop Online links"
}
]