mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-04 17:37:28 -08:00
27 lines
655 B
TypeScript
27 lines
655 B
TypeScript
|
import {
|
||
|
ICredentialType,
|
||
|
NodePropertyTypes,
|
||
|
} from 'n8n-workflow';
|
||
|
|
||
|
export class KoBoToolboxApi implements ICredentialType {
|
||
|
name = 'koBoToolboxApi';
|
||
|
displayName = 'KoBoToolbox API Token';
|
||
|
// See https://support.kobotoolbox.org/api.html
|
||
|
documentationUrl = 'koBoToolbox';
|
||
|
properties = [
|
||
|
{
|
||
|
displayName: 'API root URL',
|
||
|
name: 'URL',
|
||
|
type: 'string' as NodePropertyTypes,
|
||
|
default: 'https://kf.kobotoolbox.org/',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'API Token',
|
||
|
name: 'token',
|
||
|
type: 'string' as NodePropertyTypes,
|
||
|
default: '',
|
||
|
hint: 'You can get your API token at https://[api-root]/token/?format=json (for a logged in user)',
|
||
|
},
|
||
|
];
|
||
|
}
|