Attribute List Item ID
If you are unsure where to find the Attribute List Item ID we've got you covered.
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 and Attribute list id. Once obtained, you can retrieve the specific Attribute List Item ID you need.
Try fetch the attribute list item ids related to your Atlas map(s) in the "Sandbox":
Here is the request Curl
curl --request GET \
--url 'https://app-api.geposit.se/v2.0/attribute/list/<attribute_list_id>/item?api_key=<your_api_key>' \
--header 'accept: application/json'
This is how the response would look like.
[
{
"id": "att1",
"user_id": "user1",
"tenant_id": "tenant1",
"created_at": "2023-03-23T14:36:49.616545Z",
"type": "numeric",
"name": "Attr1",
"position": 1,
"description": "",
"default_value": "0"
},
{
"id": "att2",
"user_id": "user1",
"tenant_id": "tenant1",
"created_at": "2023-03-23T15:00:50.467824Z",
"type": "string",
"name": "Attr2",
"position": 2,
"description": "",
"default_value": ""
}...
]
Also, you can switch on the Show Object Ids and retrieve the Attribute List Item Id from the web application itself. Once you navigate to the attributes section, you will obtain the relevant Attribute List Item ID as follows.
If you are unaware how to get the Attribute List Id, check How to get Attribute List ID
Updated 9 months ago