const options = {
method: 'GET',
headers: {'X-Team-Id': '<x-team-id>', Authorization: 'Bearer <token>'}
};
fetch('https://app.paperlink.online/api/mobile/folders', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));