const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api-v2.watchcollect.com/v2/sessions/{session_id}/auth/qr', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));