You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

29 lines
627 B

@token = eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJhc3RyaWEiLCJpYXQiOjE3NTI3ODY2Njh9._naj-ip2UeBxbflzGOWLxjHNTXJobLJ9s_70xL6ylKw
### UPDATE VIDEO
PUT http://127.0.0.1:8000/api/videos/12
Content-Type: application/json
Authorization: Bearer {{token}}
{
"title": "test",
"description": "fdsmlkjdfs",
"visibility": "private"
}
### TOGGLE LIKE
GET http://127.0.0.1:8000/api/videos/14/like
Authorization: Bearer {{token}}
### ADD TAGS
PUT http://127.0.0.1:8000/api/videos/1/tags
Content-Type: application/json
Authorization: Bearer {{token}}
{
"tags": [
"test",
"chat"
],
"channel": 1
}