2023-01-27 03:22:44 -08:00
|
|
|
import type {
|
2022-07-04 13:06:38 -07:00
|
|
|
IAuthenticateGeneric,
|
|
|
|
ICredentialTestRequest,
|
2022-03-20 01:54:31 -07:00
|
|
|
ICredentialType,
|
|
|
|
NodePropertyTypes,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
export class KoBoToolboxApi implements ICredentialType {
|
|
|
|
name = 'koBoToolboxApi';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2022-03-20 01:54:31 -07:00
|
|
|
displayName = 'KoBoToolbox API Token';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2022-03-20 01:54:31 -07:00
|
|
|
// See https://support.kobotoolbox.org/api.html
|
|
|
|
documentationUrl = 'koBoToolbox';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2022-03-20 01:54:31 -07:00
|
|
|
properties = [
|
|
|
|
{
|
2022-04-13 23:32:27 -07:00
|
|
|
displayName: 'API Root URL',
|
2022-03-20 01:54:31 -07:00
|
|
|
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)',
|
|
|
|
},
|
|
|
|
];
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2022-09-09 01:35:50 -07:00
|
|
|
authenticate: IAuthenticateGeneric = {
|
2022-07-04 13:06:38 -07:00
|
|
|
type: 'generic',
|
|
|
|
properties: {
|
|
|
|
headers: {
|
|
|
|
Authorization: '=Token {{$credentials.token}}',
|
|
|
|
},
|
|
|
|
},
|
2022-09-09 01:35:50 -07:00
|
|
|
};
|
2022-07-04 13:06:38 -07:00
|
|
|
|
|
|
|
test: ICredentialTestRequest = {
|
|
|
|
request: {
|
|
|
|
baseURL: '={{$credentials.URL}}',
|
|
|
|
url: '/api/v2/assets/',
|
|
|
|
method: 'GET',
|
|
|
|
},
|
|
|
|
};
|
2022-03-20 01:54:31 -07:00
|
|
|
}
|