# Get Tags Details
Using this services, you can get all the tags' details.
# Building your request
Please 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 all the tags that are created so far.
# 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 information for all tags, to help your users drive further goodness in the world!