mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
ecd3bbfcd3
* 👕 Autofix creds lint issues * 👕 Manually fix creds lint issues * 👕 Fix indentation * ✏️ Fix typo * 👕 Fix indentation * ✏️ Fix typo
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)',
|
|
},
|
|
];
|
|
}
|