mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
🐛 Set new Hubspot granular scopes (#2531)
* Hubspot Developer API Credentials: Use granular scopes as contacts scope is no longer available for new apps * ⚡ Add new scopes to regular node * ⚡ Small fix * ⚡ Load contacts, companies and deals from API Co-authored-by: that-one-tom <19203795+that-one-tom@users.noreply.github.com>
This commit is contained in:
@@ -4,7 +4,16 @@ import {
|
||||
} from 'n8n-workflow';
|
||||
|
||||
const scopes = [
|
||||
'contacts',
|
||||
'crm.schemas.deals.read',
|
||||
'crm.objects.owners.read',
|
||||
'crm.objects.contacts.write',
|
||||
'crm.objects.companies.write',
|
||||
'crm.objects.companies.read',
|
||||
'crm.objects.deals.read',
|
||||
'crm.schemas.contacts.read',
|
||||
'crm.objects.deals.write',
|
||||
'crm.objects.contacts.read',
|
||||
'crm.schemas.companies.read',
|
||||
'forms',
|
||||
'tickets',
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user