HTTP Method: GET
URL: https://www.aplos.com/hermes/api/v1/tags
Parameters:
Headers:
Example JSON:
{
"version": "v2_0_0",
"status": 200,
"meta": {
"resource_count": 1,
"available_filters": {
"f_tagname": "Any part of the tag name, case insensitive",
}
},
"links": {
"next": "/api/v1/tags?page_size=1&page_num=2",
"self": "/api/v1/tags?page_size=1&page_num=1"
},
"data": {
"tagcategories": [
{
"id": 1,
"name": "Custom",
"tag_groups": [
{
"id": 1,
"name": "All Tags",
"tags": [
{
"id": 1,
"name": "Allocate"
},
{
"id": 2,
"name": "West"
}
]
}
]
}
}
HTTP Method: GET
URL: https://www.aplos.com/hermes/api/v1/tags/:tagId
Parameters:
Headers:
Example JSON:
{
"version": "v2_0_0",
"status": 200,
"meta": {
"resource_count": 1
},
"links": {
"self": "/api/v1/tags/2"
},
"data": {
"tagcategories": [
{
"id": 1,
"name": "Custom",
"tag_groups": [
{
"id": 1,
"name": "All Tags",
"tags": [
{
"id": 2,
"name": "West"
}
]
}
]
}
]
}
}