mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
50 lines
1,018 B
TypeScript
50 lines
1,018 B
TypeScript
import type {
|
|
IAuthenticateGeneric,
|
|
ICredentialTestRequest,
|
|
ICredentialType,
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export class AirtableTokenApi implements ICredentialType {
|
|
name = 'airtableTokenApi';
|
|
|
|
displayName = 'Airtable Personal Access Token API';
|
|
|
|
documentationUrl = 'airtable';
|
|
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'Access Token',
|
|
name: 'accessToken',
|
|
type: 'string',
|
|
typeOptions: { password: true },
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: `Make sure you enabled the following scopes for your token:<br>
|
|
<code>data.records:read</code><br>
|
|
<code>data.records:write</code><br>
|
|
<code>schema.bases:read</code><br>
|
|
`,
|
|
name: 'notice',
|
|
type: 'notice',
|
|
default: '',
|
|
},
|
|
];
|
|
|
|
authenticate: IAuthenticateGeneric = {
|
|
type: 'generic',
|
|
properties: {
|
|
headers: {
|
|
Authorization: '=Bearer {{$credentials.accessToken}}',
|
|
},
|
|
},
|
|
};
|
|
|
|
test: ICredentialTestRequest = {
|
|
request: {
|
|
baseURL: 'https://api.airtable.com/v0/meta/whoami',
|
|
},
|
|
};
|
|
}
|