const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.scholarlysoftware.com/api/v1/folders/{id}/relationships/children', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));