-
Notifications
You must be signed in to change notification settings - Fork 8.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: HighLevel oauth2 api credentials (#9542)
- Loading branch information
1 parent
da41d31
commit be58905
Showing
4 changed files
with
73 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 65 additions & 0 deletions
65
packages/nodes-base/credentials/HighLevelOAuth2Api.credentials.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
import type { ICredentialType, INodeProperties } from 'n8n-workflow'; | ||
|
||
export class HighLevelOAuth2Api implements ICredentialType { | ||
name = 'highLevelOAuth2Api'; | ||
|
||
extends = ['oAuth2Api']; | ||
|
||
displayName = 'HighLevel OAuth2 API'; | ||
|
||
documentationUrl = 'highLevel'; | ||
|
||
icon = 'file:icons/highLevel.svg'; | ||
|
||
properties: INodeProperties[] = [ | ||
{ | ||
displayName: 'Grant Type', | ||
name: 'grantType', | ||
type: 'hidden', | ||
default: 'authorizationCode', | ||
}, | ||
{ | ||
displayName: 'Authorization URL', | ||
name: 'authUrl', | ||
type: 'options', | ||
default: 'https://marketplace.leadconnectorhq.com/oauth/chooselocation', | ||
required: true, | ||
options: [ | ||
{ | ||
name: 'White-Label', | ||
value: 'https://marketplace.leadconnectorhq.com/oauth/chooselocation', | ||
}, | ||
{ | ||
name: 'Standard', | ||
value: 'https://marketplace.gohighlevel.com/oauth/chooselocation', | ||
}, | ||
], | ||
}, | ||
{ | ||
displayName: 'Scope', | ||
name: 'scope', | ||
type: 'string', | ||
hint: 'Separate scopes by space', | ||
default: '', | ||
required: true, | ||
}, | ||
{ | ||
displayName: 'Access Token URL', | ||
name: 'accessTokenUrl', | ||
type: 'hidden', | ||
default: 'https://services.leadconnectorhq.com/oauth/token', | ||
}, | ||
{ | ||
displayName: 'Auth URI Query Parameters', | ||
name: 'authQueryParameters', | ||
type: 'hidden', | ||
default: '', | ||
}, | ||
{ | ||
displayName: 'Authentication', | ||
name: 'authentication', | ||
type: 'hidden', | ||
default: 'body', | ||
}, | ||
]; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters