const url = 'https://studyfetchapi.com/api/v1/materials/bulk/move';
const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: '{"materialIds":["<string>"],"folderId":"<string>"}'
};
try {
const response = await fetch(url, options);
const data = await response.json();
console.log(data);
} catch (error) {
console.error(error);
}