mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
✨ Add Urlscan.io node (#2266)
* ✨ Create urlscan.io node * ⚡ Change default visibility to private Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
This commit is contained in:
19
packages/nodes-base/credentials/UrlScanIoApi.credentials.ts
Normal file
19
packages/nodes-base/credentials/UrlScanIoApi.credentials.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
import {
|
||||
ICredentialType,
|
||||
INodeProperties,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
export class UrlScanIoApi implements ICredentialType {
|
||||
name = 'urlScanIoApi';
|
||||
displayName = 'urlscan.io API';
|
||||
documentationUrl = 'urlScanIo';
|
||||
properties: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'API Key',
|
||||
name: 'apiKey',
|
||||
type: 'string',
|
||||
default: '',
|
||||
required: true,
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user