List Tags (RESERVED)
RESERVED: The keyword RESERVED annotation means that the API is available for use but is not yet part of the officially supported specification. Its behavior, interface, or output may change in future releases without backward compatibility guarantees.
Overview
Retrieves all tags used in the specified application. Returns a list of tag names that are currently assigned to objects within the application.
URI
GET /rest/applications/{name}/tags
Path parameters
name(string) - Application name (properly encoded, no back-quote)
Responses
application/json
Success Response (200 OK)
{
"results": ["tag1", "tag2", "tag3"]
}
Empty Response (No Tags)
{
"results": []
}
JSON representation
| Property | Type | Description |
|---|---|---|
| results | array of strings | List of tag names sorted alphabetically that are used in the application |