Tags
The ID of the media.
The tag object(s) for the given media.
Authorization information is missing or invalid.
If a user without proper permissions tries to call this endpoint, the call is rejected with 403 Forbidden.
The media was not found by ID.
GET /api/public/v1/media/{media_id}/tags HTTP/1.1
Host: tw.instructuremedia.com
Authorization: YOUR_API_KEY
Accept: */*
{
"tags": [
{
"id": 1,
"name": "text"
}
]
}
The ID of the media.
The name of the tag.
The tag object that was created.
Authorization information is missing or invalid.
If a user without proper permissions tries to call this endpoint, the call is rejected with 403 Forbidden.
The media was not found by ID.
POST /api/public/v1/media/{media_id}/tags HTTP/1.1
Host: tw.instructuremedia.com
Authorization: YOUR_API_KEY
Accept: */*
{
"tag": {
"id": 1,
"name": "text"
}
}
The ID of the media.
The ID of the tag.
The media tag has been deleted.
Authorization information is missing or invalid.
If a user without proper permissions tries to call this endpoint, the call is rejected with 403 Forbidden.
The media or tag ID was not found.
DELETE /api/public/v1/media/{media_id}/tags/{tag_id} HTTP/1.1
Host: tw.instructuremedia.com
Authorization: YOUR_API_KEY
Accept: */*
No content
Last updated
Was this helpful?