accessData = fetch(`${endPoint}/oauth2/token`, {
body: '{"grant_type": "client_credentials", "scope": "user"}',
headers: {
Authorization: `Basic ${base64.encode(
`${applicationId}:${applicationSecret}`
)}`,
"Content-Type": "application/json"
},
method: "POST"
}).then((response) => {
return response.json();
})