Tags

January 23, 2014 · View on GitHub

Tags are small text created by user to describe a link. It helps people to organized a large amount of links.


/v1/tags/get

Returns a list of tags and number of times used by a user.

Example Response

<tags>
<tag count="1" tag="activedesktop" />
<tag count="1" tag="business" />
<tag count="3" tag="radio" />
<tag count="5" tag="xml" />
<tag count="1" tag="xp" />
<tag count="1" tag="xpi" />
</tags>

/v1/tags/delete?

Delete an existing tag from all posts

Arguments

  • &tag={TAG} (required) — Tag to delete.

Example Response

<result>done</result>

/v1/tags/rename?

Rename an existing tag with a new tag name.

Arguments

  • &old={TAG} (required) — Tag to rename.
  • &new={TAG} (required) — New tag name.

Example Response

<result>done</result>