mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
29 lines
504 B
TypeScript
29 lines
504 B
TypeScript
import {
|
|
IAuthenticateGeneric,
|
|
ICredentialType,
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
export class AirtableApi implements ICredentialType {
|
|
name = 'airtableApi';
|
|
displayName = 'Airtable API';
|
|
documentationUrl = 'airtable';
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'API Key',
|
|
name: 'apiKey',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
];
|
|
authenticate: IAuthenticateGeneric = {
|
|
type: 'generic',
|
|
properties: {
|
|
qs: {
|
|
api_key: '={{$credentials.apiKey}}',
|
|
},
|
|
},
|
|
};
|
|
}
|