Hello,
i have facing this type of issue with hubspot integration,
→ # Request for Integration Permissions
->This hub doesn’t have access to some HubSpot features that are required by this integration. Please contact the integrator.
[
image.png1152x648 28.1 KB
if setup any web hooks or hubspot setup/configure issue, then also suggest.
i have only use this scopes ::::: Basic OAuth functionality, and Read from and write to my in Contacts(Checked) ,Workflows(Checked).
[
image.png954x555 12.5 KB
Please Suggest me Which type of permission allow for my Developer.
This is the my code::
var options = {
method: ‘POST’,
url: ‘https://api.hubapi.com/oauth/v1/token’,
headers:
{
‘content-type’: ‘application/x-www-form-urlencoded’,
accept: ‘application/json’
},
form:
{
grant_type: ‘authorization_code’,
client_id: this.clientid,
client_secret: this.clientsec,
scope:‘contacts%20automation%20workflows’,
redirect_uri: redirect,
code: code
}
};
it works fine with our test account. However, when a client of ours tries to authorize with OAuth and their HubSpot account, they always get this message:
This hub doesn’t have access to some HubSpot features that are required by this integration. Please contact the integrator.

