I'm writing an API integration for a website and stumbled onto a really strange issue with the Box API: I can create weblinks with tags via the API, but can't read those tags. However, I can read tags of files and folders.
What I've tried:
GET https://api.box.com/2.0/files/1234567890
GET https://api.box.com/2.0/web_links/1234567890
GET https://api.box.com/2.0/web_links/1234567890?fields=tags
GET https://api.box.com/2.0/folders/0/items?fields=tags
GET https://api.box.com/2.0/folders/0/items?fields=tags&content_types=tags
However, these commands return zero tags in responses for weblinks.
So my question is does Box support reading tags on weblinks via the API? And if not, has anyone discovered any workarounds?
----------
P.S. Since their code editor is stupid and converts all links to urls, I had to remove the code block above.