Businesses
Google attributes for your business
This endpoint allows you to view the Google attributes set for your business.
get/business/{business_id}/attributes
Path parameters
business_idstring required
Business id.
It may be replaced by c-{code} where code is the store code, which should be unique per organization. This can be used only for ORG_ADMIN, GROUP_MANAGER and BUSINESS_MANAGER users.
Query parameters
category_namestring
Example:gcid:restaurant
Category for which availabe attributes will be fetched.
countrystring
Country for which available attributes will be fetched - use ISO 3166 alpha2 code ("FR", "EN", "IT").
Response
OK
Example response
{
"attributes": [
{
"type": "BOOL",
"gmb_id": "has_curbside_pickup",
"value": false
},
{
"type": "BOOL",
"gmb_id": "has_delivery",
"value": true
},
{
"type": "ENUM",
"gmb_id": "wi_fi",
"value": "free_wi_fi"
},
{
"type": "REPEATABLE_ENUM",
"gmb_id": "pay_credit_card_types_accepted",
"value": {
"set_values": [
"american_express",
"discover"
],
"unset_values": []
}
},
{
"type": "URL",
"gmb_id": "url_menu",
"value": "https://www.test.fr"
},
{
"type": "REPEATABLE_URL",
"gmb_id": "url_order_ahead",
"value": null
},
{
"type": "REPEATABLE_URL",
"gmb_id": "url_reservations",
"value": [
"https://www.test1.fr",
"https://www.test2.fr"
]
}
]
}