Business Permitted List
Returns a list of businesses that are allowed for API user.
{
const res = await fetch(`${BASE_URL}/api/v1/businesses/permitted_list`, {
method: 'GET',
headers: {
'Content-Type': 'application/json'
}});
const data = await res.json();
}