2023-01-27 03:22:44 -08:00
|
|
|
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
2020-06-23 08:20:21 -07:00
|
|
|
|
2020-06-24 21:06:48 -07:00
|
|
|
export class Signl4Api implements ICredentialType {
|
|
|
|
name = 'signl4Api';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2020-06-23 08:20:21 -07:00
|
|
|
displayName = 'SIGNL4 Webhook';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2020-08-17 05:42:09 -07:00
|
|
|
documentationUrl = 'signl4';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2021-06-12 09:39:55 -07:00
|
|
|
properties: INodeProperties[] = [
|
2020-06-23 08:20:21 -07:00
|
|
|
{
|
|
|
|
displayName: 'Team Secret',
|
|
|
|
name: 'teamSecret',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'string',
|
2020-06-23 08:20:21 -07:00
|
|
|
default: '',
|
2022-04-13 23:32:27 -07:00
|
|
|
description: 'The team secret is the last part of your SIGNL4 webhook URL',
|
2020-06-23 08:20:21 -07:00
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|