Hello,
I would like to retrieve a list of all the tags available, for example this call
curl -G \
--request GET \
--header "Authorization: Bearer $USERNAME $PASSWORD" \
--header "Accept: application/json" \
"$API_URL/domain-types/host_tag_group/collections/all"
returns something like
{
"links": [
{
"domainType": "link",
"rel": "self",
"href": "http://xxxxxxxxxxx/api/1.0/domain-types/host_tag_group/collections/all",
"method": "GET",
"type": "application/json"
}
],
"id": "host_tag",
"domainType": "host_tag_group",
"value": [
{
"domainType": "dict",
"title": "Criticality"
},
{
"domainType": "dict",
"title": "Networking Segment"
},
{
"domainType": "dict",
"title": "Tag Group for my check"
},
{
"domainType": "dict",
"title": "Data Quality Check"
},
{
"domainType": "dict",
"title": "my check"
},
{
"domainType": "dict",
"title": "Checkmk agent / API integrations"
},
{
"domainType": "dict",
"title": "Piggyback"
},
{
"domainType": "dict",
"title": "SNMP"
},
{
"domainType": "dict",
"title": "IP address family"
}
]
}
I would like the details for ‘my check’ and all the other tags inside a topic, is this possible?