GET localhost/api/admin/video
GET localhost/api/admin/video/1
GET localhost/api/admin/video/image/1
POST localhost/api/admin/video
{
"id": 0,
"name": "posted2",
"source": "YT gen",
"link": "some link",
"description": "Enjoyed no sooner but despised straight",
"hidden": false,
"noOfViews": 1100,
"noOfUpvotes": 30,
"noOfDownvotes": 12
}
returns the new record
PUT localhost/api/admin/video
{
"id": 619,
"name": "updated",
"source": "YT gen",
"link": "some link update",
"description": "Enjoyed no sooner but despised straight, update",
"hidden": false,
"noOfViews": 1101,
"noOfUpvotes": 31,
"noOfDownvotes": 13
}
returns the updated record
PUT localhost/api/admin/video/image/1?url=https://www.guidingeyes.org/wp-content/uploads/2020/01/1-1.jpg
DELETE localhost/api/admin/video/1
returns 1 if deleted, 0 if no record with this id
NOTE: Deletes video/tag + video/category "links" internally
DELETE localhost/api/admin/videos?ids=1,2,3
returns 1 if deleted, 0 if the delete failed
NOTE: Deletes video/tag + video/category "links" internally
GET localhost/api/admin/video/populate
GET localhost/api/admin/video/populate/3
GET localhost/api/admin/video/tags/1 => array of tag Ids and naames
GET localhost/api/admin/video/categories/1 => array of category Ids and naames
POST localhost/api/admin/video/tags/1?tags=1,2,3 => array of tag Ids
POST localhost/api/admin/video/categories/1?categories=1,2,3 => array of category Ids
GET localhost/api/admin/video/orderBy/upload
GET localhost/api/admin/video/orderBy/upvotes