Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Method

Path

Description

GET

/v1/tags

A public endpoint that returns an object listing all the tags by their category (see below; right now that is “category” for assessment categories and “tag” for the more generic tagging mechanism).

POST

/v1/tags

Add a tag with a simple POST body: { “value”: “newTagValue” }

DELETE

/v1/tags/{tagValue}

For tests, we should clean up autogenerated test tags, so provide an API for that. This should fail if the tag is in use by any entity.

...