Push Tags (GET)

Retrieves tags of the application with the application ID.

Roles

Users in the following roles are authorized to perform this operation:

  • worklightadmin
  • worklightdeployer
  • worklightmonitor
  • worklightoperator

Method

GET

Path

/management-apis/1.0/runtimes/runtime-name/notifications/applications/application-name/tags

Example

https://www.example.com/worklightadmin/management-apis/1.0/runtimes/myruntime/notifications/applications/myapplication/tags?locale=de_DE

Path Parameters

runtime-name
The name of the runtime. This is the context root of the runtime web application, without the leading slash.
application-name
The name of the application.

Query Parameters

Query parameters are optional.

locale
The locale used for error messages.

Produces

application/json, application/xml, text/xml

Response

The Tags of the application with details such as description, name, and product version.

JSON Example

{
  "description" : "This is a Gold tag.",
  "name" : "Gold",
  "productVersion" : "7.0.0",
}

XML Example

<?xml version="1.0" encoding="UTF-8"?>
<tags
  description="This is a Gold tag."
  name="Gold"
  productVersion="7.0.0"/>

Response Properties

The response has the following properties:

description
The description of the Tag.
name
The name of the Tag.
productVersion
The exact product version.

Errors

403
The user is not authorized to call this service.
404
The corresponding runtime is not found or not running.
500
An internal error occurred.