🎬 CinePro is officially here! Check out the latest release for details!🥳
const options = {method: 'GET'};
fetch('https://api.example.com/v1/refresh/{responseId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": "OK"
}Invalidates the cache for a specific source by responseId. This is useful when sources have expired or changed.
Behavior:
const options = {method: 'GET'};
fetch('https://api.example.com/v1/refresh/{responseId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": "OK"
}Documentation Index
Fetch the complete documentation index at: https://docs.cinepro.cc/llms.txt
Use this file to discover all available pages before exploring further.
Was this page helpful?