2023-01-27 03:22:44 -08:00
|
|
|
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
2020-06-10 03:48:21 -07:00
|
|
|
|
2020-06-14 13:30:24 -07:00
|
|
|
const scopes = [
|
|
|
|
'surveys_read',
|
|
|
|
'collectors_read',
|
|
|
|
'responses_read',
|
|
|
|
'responses_read_detail',
|
|
|
|
'webhooks_write',
|
|
|
|
'webhooks_read',
|
|
|
|
];
|
2020-06-10 03:48:21 -07:00
|
|
|
|
|
|
|
export class SurveyMonkeyOAuth2Api implements ICredentialType {
|
|
|
|
name = 'surveyMonkeyOAuth2Api';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2022-07-24 08:36:17 -07:00
|
|
|
extends = ['oAuth2Api'];
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2020-06-10 03:48:21 -07:00
|
|
|
displayName = 'SurveyMonkey OAuth2 API';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2020-08-17 05:42:09 -07:00
|
|
|
documentationUrl = 'surveyMonkey';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2021-06-12 09:39:55 -07:00
|
|
|
properties: INodeProperties[] = [
|
2022-06-13 22:27:19 -07:00
|
|
|
{
|
|
|
|
displayName: 'Grant Type',
|
|
|
|
name: 'grantType',
|
|
|
|
type: 'hidden',
|
|
|
|
default: 'authorizationCode',
|
|
|
|
},
|
2020-06-10 03:48:21 -07:00
|
|
|
{
|
|
|
|
displayName: 'Authorization URL',
|
|
|
|
name: 'authUrl',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'hidden',
|
2020-06-10 03:48:21 -07:00
|
|
|
default: 'https://api.surveymonkey.com/oauth/authorize',
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Access Token URL',
|
|
|
|
name: 'accessTokenUrl',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'hidden',
|
2020-06-10 03:48:21 -07:00
|
|
|
default: 'https://api.surveymonkey.com/oauth/token',
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Scope',
|
|
|
|
name: 'scope',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'hidden',
|
2020-06-14 13:30:24 -07:00
|
|
|
default: scopes.join(','),
|
2020-06-10 03:48:21 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Auth URI Query Parameters',
|
|
|
|
name: 'authQueryParameters',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'hidden',
|
2020-06-10 03:48:21 -07:00
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Authentication',
|
|
|
|
name: 'authentication',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'hidden',
|
2020-10-22 06:46:03 -07:00
|
|
|
default: 'body',
|
2020-06-10 03:48:21 -07:00
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|