mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
637e81552f
* Fix query,sort + use question name in attachments * Change Menu structure * kobo: Clearer webhook name * [kobo]: fix when no json filter * Fix ambiguous attachment matching + GeoJSON Polygon format * Fix kobo function * Fix extra descriptions * Add credentials injection and testing * Fix credential injection and lint issues Co-authored-by: Yann Jouanique <yann.jouanique@oneacrefund.org> Co-authored-by: Yann Jouanique <yann.jouanique@gmail.com> Co-authored-by: Omar Ajoue <krynble@gmail.com> Co-authored-by: Jan Oberhauser <janober@users.noreply.github.com>
45 lines
1,000 B
TypeScript
45 lines
1,000 B
TypeScript
import {
|
|
IAuthenticateGeneric,
|
|
ICredentialTestRequest,
|
|
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)',
|
|
},
|
|
];
|
|
authenticate = {
|
|
type: 'generic',
|
|
properties: {
|
|
headers: {
|
|
Authorization: '=Token {{$credentials.token}}',
|
|
},
|
|
},
|
|
} as IAuthenticateGeneric;
|
|
|
|
test: ICredentialTestRequest = {
|
|
request: {
|
|
baseURL: '={{$credentials.URL}}',
|
|
url: '/api/v2/assets/',
|
|
method: 'GET',
|
|
},
|
|
};
|
|
}
|