Skip to main content

Poi object

This page describes poi object.

Object explanation#

  • id - integer - required
  • name - string - required
  • phone - string - optional
  • website - string - optional
  • location - object - required
    • lat - float - `required
    • lng - float - `required
  • address - object - required
    • street - string - required
    • city - string - required
    • zipCode - string - required
    • country - string - required - 2 chars
  • tag - array of integers - optional - tag ids
  • images - array of string - optional
  • isPartner - boolean
  • isPotentialPartner - boolean

Example object#

{
"id": 22253,
"name": "Radoszowska 17, 41-707 Ruda ÅšlÄ…ska, Polen",
"phone": null,
"website": null,
"location": {
"lat": 50.256771,
"lng": 18.929426
},
"address": {
"street": "Radoszowska 17",
"city": "Ruda ÅšlÄ…ska",
"zipCode": "41-707",
"country": "PL"
},
"tag": [21]
}