Decode mp4 links for specific content
POST
/api/v1/parse/decode/{contentId}
const url = 'http://localhost:8080/api/v1/parse/decode/1?force=false';const options = {method: 'POST'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url 'http://localhost:8080/api/v1/parse/decode/1?force=false'Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” contentId
required
integer format: int64
Query Parameters
Section titled “Query Parameters ” force
boolean
Responses
Section titled “ Responses ”OK