mirror of
https://github.com/n8n-io/n8n-nodes-starter.git
synced 2025-12-20 10:46:16 -06:00
Credencial y nodo de VerificarEmailconfigurado exitosamente
This commit is contained in:
parent
9bc48cec2c
commit
1e3b2dc957
6 changed files with 80 additions and 13 deletions
20
nodes/VerificarEmail/VerificarEmail.node.json
Normal file
20
nodes/VerificarEmail/VerificarEmail.node.json
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"node": "n8n-nodes-base.verificarEmail",
|
||||
"nodeVersion": "1.0",
|
||||
"codexVersion": "1.0",
|
||||
"categories": [
|
||||
"Miscellaneous"
|
||||
],
|
||||
"resources": {
|
||||
"credentialDocumentation": [
|
||||
{
|
||||
"url": ""
|
||||
}
|
||||
],
|
||||
"primaryDocumentation": [
|
||||
{
|
||||
"url": ""
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
import { INodeType, INodeTypeDescription, NodeConnectionTypes } from 'n8n-workflow';
|
||||
export class VerificarEmail implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'Verificacion de Email',
|
||||
displayName: 'Verificacion de Validez de Email',
|
||||
name: 'verificarEmail',
|
||||
icon: 'file:mail-mail-email.svg',
|
||||
group: ['transform'],
|
||||
|
|
@ -15,12 +15,12 @@ export class VerificarEmail implements INodeType {
|
|||
outputs: [NodeConnectionTypes.Main],
|
||||
credentials: [
|
||||
{
|
||||
name: 'VerificarEmailApi',
|
||||
name: 'verificarEmailApi',
|
||||
required: true,
|
||||
},
|
||||
],
|
||||
requestDefaults: {
|
||||
baseURL: 'https://api.emailable.com/v1/verify',
|
||||
baseURL: 'https://api.emailable.com/v1', // Solo el dominio.
|
||||
headers: {
|
||||
Accept: 'application/json',
|
||||
'Content-Type': 'application/json',
|
||||
|
|
@ -35,8 +35,11 @@ export class VerificarEmail implements INodeType {
|
|||
required: true,
|
||||
default: 'dylanbohorquez77@gmail.com',
|
||||
routing: {
|
||||
qs: {
|
||||
email: '={{$value}}',
|
||||
request: {
|
||||
url: '/verify',
|
||||
qs: {
|
||||
email: '={{$value}}',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
Before Width: | Height: | Size: 827 B After Width: | Height: | Size: 827 B |
Loading…
Add table
Add a link
Reference in a new issue