mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
38 lines
850 B
TypeScript
38 lines
850 B
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
export class SurveyMonkeyApi implements ICredentialType {
|
|
name = 'surveyMonkeyApi';
|
|
displayName = 'SurveyMonkey API';
|
|
documentationUrl = 'surveyMonkey';
|
|
properties = [
|
|
{
|
|
displayName: 'Access Token',
|
|
name: 'accessToken',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
description: `The access token must have the following scopes:</br />
|
|
- Create/modify webhooks</br />
|
|
- View webhooks</br />
|
|
- View surveys</br />
|
|
- View collectors</br />
|
|
- View responses<br />
|
|
- View response details`,
|
|
},
|
|
{
|
|
displayName: 'Client ID',
|
|
name: 'clientId',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Client Secret',
|
|
name: 'clientSecret',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
];
|
|
}
|