Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
9 changes: 7 additions & 2 deletions airbyte-integrations/connectors/source-gong/manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,13 @@ spec:
predicate_value: OAuth2.0
oauth_config_specification:
oauth_connector_input_specification:
consent_url: https://app.gong.io/oauth2/authorize?client_id={{client_id_value}}&redirect_uri={{redirect_uri_value}}&response_type=code&state={{state_value}}&scope={{scope_value | urlEncode}}
scopes:
- scope: "api:calls:read:basic"
- scope: "api:calls:read:extensive"
- scope: "api:users:read"
- scope: "api:stats:scorecards"
- scope: "api:stats:interaction"
consent_url: https://app.gong.io/oauth2/authorize?client_id={{client_id_value}}&redirect_uri={{redirect_uri_value}}&response_type=code&state={{state_value}}&{{scopes_param}}
access_token_url: https://app.gong.io/oauth2/generate-customer-token
access_token_headers:
Authorization: "Basic {{ (client_id_value ~ ':' ~ client_secret_value) | b64encode }}"
Expand All @@ -557,7 +563,6 @@ spec:
grant_type: authorization_code
redirect_uri: "{{ redirect_uri_value }}"
code: "{{ auth_code_value }}"
scope: api:calls:read:basic api:calls:read:extensive api:users:read api:stats:scorecards api:stats:interaction
extract_output:
- access_token
- refresh_token
Expand Down
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-gong/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: 32382e40-3b49-4b99-9c5c-4076501914e7
dockerImageTag: 0.6.2
dockerImageTag: 0.6.3
dockerRepository: airbyte/source-gong
documentationUrl: https://docs.airbyte.com/integrations/sources/gong
githubIssueLabel: source-gong
Expand Down
Loading