2020-06-09 05:00:41 -07:00
|
|
|
import {
|
|
|
|
ICredentialType,
|
|
|
|
NodePropertyTypes,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
2020-06-14 15:04:22 -07:00
|
|
|
const scopes = [
|
|
|
|
'read',
|
|
|
|
'write',
|
|
|
|
];
|
2020-06-09 05:00:41 -07:00
|
|
|
|
|
|
|
export class ZendeskOAuth2Api implements ICredentialType {
|
|
|
|
name = 'zendeskOAuth2Api';
|
|
|
|
extends = [
|
|
|
|
'oAuth2Api',
|
|
|
|
];
|
|
|
|
displayName = 'Zendesk OAuth2 API';
|
2020-08-17 05:42:09 -07:00
|
|
|
documentationUrl = 'zendesk';
|
2020-06-09 05:00:41 -07:00
|
|
|
properties = [
|
|
|
|
{
|
|
|
|
displayName: 'Subdomain',
|
|
|
|
name: 'subdomain',
|
|
|
|
type: 'string' as NodePropertyTypes,
|
2020-06-14 15:04:22 -07:00
|
|
|
default: '',
|
|
|
|
placeholder: 'n8n',
|
2020-06-09 05:00:41 -07:00
|
|
|
description: 'The subdomain of your Zendesk work environment.',
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Authorization URL',
|
|
|
|
name: 'authUrl',
|
2021-01-15 00:47:39 -08:00
|
|
|
type: 'hidden' as NodePropertyTypes,
|
2021-01-27 00:02:20 -08:00
|
|
|
default: '=https://{{$self["subdomain"]}}.zendesk.com/oauth/authorizations/new',
|
2020-06-09 05:00:41 -07:00
|
|
|
description: 'URL to get authorization code. Replace {SUBDOMAIN_HERE} with your subdomain.',
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Access Token URL',
|
|
|
|
name: 'accessTokenUrl',
|
2021-01-15 00:47:39 -08:00
|
|
|
type: 'hidden' as NodePropertyTypes,
|
2021-01-27 00:02:20 -08:00
|
|
|
default: '=https://{{$self["subdomain"]}}.zendesk.com/oauth/tokens',
|
2020-06-09 05:00:41 -07:00
|
|
|
description: 'URL to get access token. Replace {SUBDOMAIN_HERE} with your subdomain.',
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Client ID',
|
|
|
|
name: 'clientId',
|
|
|
|
type: 'string' as NodePropertyTypes,
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Client Secret',
|
|
|
|
name: 'clientSecret',
|
|
|
|
type: 'string' as NodePropertyTypes,
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Scope',
|
|
|
|
name: 'scope',
|
2020-06-14 15:04:22 -07:00
|
|
|
type: 'hidden' as NodePropertyTypes,
|
|
|
|
default: scopes.join(' '),
|
2020-06-09 05:00:41 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Auth URI Query Parameters',
|
|
|
|
name: 'authQueryParameters',
|
|
|
|
type: 'hidden' as NodePropertyTypes,
|
|
|
|
default: '',
|
|
|
|
description: 'For some services additional query parameters have to be set which can be defined here.',
|
|
|
|
placeholder: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Authentication',
|
|
|
|
name: 'authentication',
|
|
|
|
type: 'hidden' as NodePropertyTypes,
|
|
|
|
default: 'body',
|
|
|
|
description: 'Resource to consume.',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|