const options = {method: 'GET', headers: {customer: '<customer>', 'X-API-Key': '<api-key>'}};
fetch('https://backend.branch.flowengineering.com/notifications/subscriptions/status', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));