Skip to content
This repository was archived by the owner on Jan 12, 2024. It is now read-only.

Modify tags

Tobias Klika edited this page Apr 5, 2019 · 3 revisions

Add tags to the specified item:

boolisSuccess=await_client.AddTags(myPocketItem,newstring[]{"css","2013"});

Remove tags from the specified item:

boolisSuccess=await_client.RemoveTags(myPocketItem,newstring[]{"css","2013"});

Remove all tags from the specified item:

boolisSuccess=await_client.RemoveTags(myPocketItem);

Replaces all existing tags with new ones for the specified item:

boolisSuccess=await_client.ReplaceTags(myPocketItem,newstring[]{"css","2013"});

Renames a tag:

boolisSuccess=await_client.RenameTag("oldTagName","newTagName");

Deletes a tag (therefore it is removed from all items):

boolisSuccess=await_client.DeleteTag("tagName");

Clone this wiki locally