const options = {
method: 'POST',
headers: {'X-Api-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({id: 2, name: '<string>'})
};
fetch('https://api.videobase.com/v1/folders/rename', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));