You can get the list of tags of a content item by sending the GET request to the following URL: /content/<content_item_id>/tags.

Permission to run the request: Account Owner, Administrator, Organization Administrator, Publisher.

 

Request Headers

ParameterDescription
X-Auth-Account-Url (required)Base URL of the account, e.g. http://myaccount.ispringlearn.com
X-Auth-Email (required)Administrator/Publisher e-mail address.
X-Auth-Password (required)Administrator/Publisher password.

After the request has been completed, the system returns the response with Code 200. The body of the response will contain xml data with tags of a given content item.

 

Possible Response Codes

CodeTextDescription
200OkThe request has been processed successfully.

Sample Request

GET /content/1/tags HTTP/1.1
Host: api.ispringonline.com
X-Auth-Account-Url: http://myaccount.ispringlearn.com
X-Auth-Email: email@email.com
X-Auth-Password: password
XML

Sample Response

HTTP/1.1 200 OK
Server: nginx
Connection: close

<tags>
  <tag>Tag1</tag>
  <tag>Tag2</tag>
</tags>
XML