n8n/packages/nodes-base/credentials/InvoiceNinjaApi.credentials.ts
2021-06-12 18:39:55 +02:00

25 lines
472 B
TypeScript

import {
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class InvoiceNinjaApi implements ICredentialType {
name = 'invoiceNinjaApi';
displayName = 'Invoice Ninja API';
documentationUrl = 'invoiceNinja';
properties: INodeProperties[] = [
{
displayName: 'URL',
name: 'url',
type: 'string',
default: 'https://app.invoiceninja.com',
},
{
displayName: 'API Token',
name: 'apiToken',
type: 'string',
default: '',
},
];
}