Try It!

Point ID

If you are unsure where to find the Point IDs we've got you covered.

You can utilize our APIs to retrieve Point Ids. Fetch point IDs per a map by using the following API and passing your API key and map id. Once obtained, you can retrieve the specific Point ID you need.

Try fetch the point ids related to your Atlas map(s) in the "Sandbox":

Get Point IDs

Here is the Curl Request.

curl --request GET \
     --url 'https://app-api.geposit.se/v2.0/geometry/point/map/<map_id>?api_key=<your_api_key>' \
     --header 'accept: application/json'

This is how the response looks like.

{
  "points": [
    {
      "point_id": "point1",
      "map_id": "map1",
      "user_id": "user1",
      "tenant_id": "tenant1",
      "container_id": "cont1",
      "name": "Point1",
      "country_code": "se",
      "street": "street1",
      "street_number": "xxx",
      "extra_number": "",
      "letter": "",
      "extra": "",
      "postcode": "xxxxx",
      "locality": "Göteborg",
      "latitude": xx.xxxx
      "longitude":xx.xxxx,
      "address_status": "validated",
      "location_status": "verified",
      "address_type": "",
      "coordinate_type": "address",
      "icon": "",
      "color": "random",
      "visible": false,
      "pin": "",
      "created_at": "2023-02-10T13:06:04.549946Z",
      "updated_at": "2023-03-08T10:57:34.145783Z",
      "updated_by": ""
    },
    {
      "point_id": "point2",
      "map_id": "map1",
      "user_id": "user1",
      "tenant_id": "tenant1",
      "container_id": "contr1",
      "name": "Point2",
      "country_code": "se",
      "street": "street2",
      "street_number": "xxx",
      "extra_number": "",
      "letter": "",
      "extra": "",
      "postcode": "xxxxx",
      "locality": "Bromma",
      "latitude": xx.xxxxx,
      "longitude": xx.xxxxx,
      "address_status": "validated",
      "location_status": "verified",
      "address_type": "NB",
      "coordinate_type": "address",
      "icon": "",
      "color": "random",
      "visible": false,
      "pin": "",
      "created_at": "2023-02-10T13:06:04.504968Z",
      "updated_at": "2023-03-08T10:57:34.150336Z",
      "updated_by": ""
    },
  "attributes": []
}

Also, you can switch on the Show Object Ids and retrieve the Point Id from the web application itself. Once you navigate in to the relevant map, you will obtain the Point ID as follows.

If you are unaware how to get the map id, check How to get map IDs