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)', }, ]; }