Create or Update Video Meta Data
Developing
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
[
{
"key": "Author",
"value": "Sk Shahriar Ahmed Raka"
},
{
"key": "Format",
"value": "mp4"
}
]
Request Code Samples
curl --location --request POST 'http://localhost:8080/v1/projects/f32a0116-fe11-454c-8e6a-5ff4101882e5/videos/aa88b7e7-b2d8-49b9-905c-cdf9b3bd9778/metadata' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '[
{
"key": "Author",
"value": "Sk Shahriar Ahmed Raka"
},
{
"key": "Format",
"value": "mp4"
}
]
// if you want to set it empty
// []'
Responses
application/json Modified at 2024-07-28 07:52:54