# Get Tag Details
Using this location services, you can get a specific tag detail by id.
# Building your request
You can get a tag's details by passing the exact value of their tagId
in the /locations/tags/{id}
endpoint. In addition, ensure that your request has been authenticated by passing your JWT access_token
as the Authorization
header.
# Sample request:
In our example, we're going to be retrieving retrieving tag based on the provided id.
# Sample response:
{
"data": {
{
"type": "tag",
"id": "1016528404788281344",
"attributes": {
"_id": "1016528404788281344",
"name": "Area",
"value": "East"
}
}
}
}
# Response Details:
Many of the response attributes are self-descriptive, but some of them may require a bit more clarity:
name
- Name of the Tag.value
- Value of the Tag.
# 🚀 ☀️ ⭐️ Congratulations! ⭐️ ☀️ 🚀
You have now obtained all of the information for this tag, to help your users drive further goodness in the world!