Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix(hubspot): add missing tickets and oauth scopes to OAuth config (#…
  • Loading branch information
waleedlatif1 authored Mar 18, 2026
commit 8b245693e21a2f9ecff6e5a4f7ae78193ecb5488
3 changes: 3 additions & 0 deletions apps/sim/lib/oauth/oauth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -836,6 +836,9 @@ export const OAUTH_PROVIDERS: Record<string, OAuthProviderConfig> = {
'crm.lists.read',
'crm.lists.write',
'crm.objects.tickets.read',
'crm.objects.tickets.write',
'tickets',
'oauth',
Comment thread
waleedlatif1 marked this conversation as resolved.
],
},
},
Expand Down
3 changes: 3 additions & 0 deletions apps/sim/lib/oauth/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,9 @@ export const SCOPE_DESCRIPTIONS: Record<string, string> = {
'crm.lists.read': 'Read HubSpot lists',
'crm.lists.write': 'Create and update HubSpot lists',
'crm.objects.tickets.read': 'Read HubSpot tickets',
'crm.objects.tickets.write': 'Create and update HubSpot tickets',
tickets: 'Access HubSpot tickets',
oauth: 'Authenticate with HubSpot OAuth',

// Salesforce scopes
api: 'Access Salesforce API',
Expand Down
Loading