Try It!

Attribute List ID

If you are unsure where to find the Attribute List ID we've got you covered. Create Attribute lists as needed, allowing you to assign them to maps based on their intended purpose.

You can utilize our APIs to retrieve Attribute List Ids. Fetch all available attribute lists by using the following API and passing your API key. Once obtained, you can retrieve the specific Attribute List ID you need.

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

Get Attribute List IDs

Here is the request curl.

curl --request GET \
     --url 'https://app-api.geposit.se/v2.0/attribute/list?api_key=<your-api-key>' \
     --header 'accept: application/json'

This is how the response looks like.

[
  {
    "id": "list1",
    "user_id": "user1",
    "tenant_id": "tenant1",
    "created_at": "2023-08-17T08:29:00.672655Z",
    "updated_at": "2023-08-17T08:29:00.672655Z",
    "imported": false,
    "name": "NewList",
    "description": ""
  },
  {
    "id": "list2",
    "user_id": "user1",
    "tenant_id": "tenant1",
    "created_at": "2023-08-17T08:29:02.210046Z",
    "updated_at": "2023-08-17T08:29:02.210046Z",
    "imported": false,
    "name": "List2",
    "description": ""
  },...
]

Also, you can switch on the Show Object Ids and retrieve the Attribute List Id from the web application itself. Once you navigate to the attributes section, you will obtain the relavent Attribute List ID as follows.