GET
/
api
/
v1
/
external
/
restaurant
/
find
/
partner
/
{id}
Find a restaurant by partner system ID or PoS ID
curl --request GET \
  --url http://dev-backend-1.guestme.space/api/v1/external/restaurant/find/partner/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "name": "Gussi",
  "status": "ACTIVE",
  "description": "Gussi is a good restaurant",
  "address": {
    "country": "Russia",
    "countryCode": "RU",
    "city": "Moscow",
    "home": 123,
    "street": "Lenina",
    "point": {
      "x": 123,
      "y": 123
    }
  },
  "info": {
    "phone": "+79998887766",
    "site": "<string>",
    "telegram": "<string>",
    "vk": "<string>",
    "iikoUid": "123-456-789",
    "iikoCrmId": 123456789,
    "taxNumber": 123456789
  },
  "properties": {
    "phoneConfirmationEnabled": true,
    "guestAcquisitionChannelEnabled": true
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

External partner ID (e.g., iiko or r_keeper UID)

Response

200 - */*

OK

The response is of type object.