mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
20 lines
325 B
JSON
20 lines
325 B
JSON
|
{
|
||
|
"name": "customE2eCredential",
|
||
|
"displayName": "Custom E2E Credential",
|
||
|
"properties": [{
|
||
|
"displayName": "API Key",
|
||
|
"name": "apiKey",
|
||
|
"type": "string",
|
||
|
"default": "",
|
||
|
"required": false
|
||
|
}],
|
||
|
"authenticate": {
|
||
|
"type": "generic",
|
||
|
"properties": {
|
||
|
"qs": {
|
||
|
"auth": "={{$credentials.apiKey}}"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|