Author - Taggable Items API

Search for items that are able to be tagged with the given tag that don't already have it.

GET /api/author/tags/:tag_id/taggable_items

Returns objects eligible to have the given tag applied to them and match the given search term.

Example Request

{
  "tag_id": 1,
  "search": "Brand"
}
curl \
  -X GET \
  -H "Authorization: Bearer $TOKEN" \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json' \
  -d '{"tag_id":1,"search":"Brand"}' \
  http://<bridge>/api/author/tags/:tag_id/taggable_items
    

Example Response

{
  "taggable_items": [
    {"id":"231","type":"CourseTemplate","title":"Introduction to Brand Marketing"},
    {"id":"14","type":"CourseTemplate","title":"Building a Brand"}
  ]
}