Why isnt it doing its thing? I cant comprehend this node as I am a rookie but can anyone tell me whats wrong with this?
Hi there!
It seems there is a mistake in the JSON that you are passing. Can you share the JSON here? I can take a look.
{
“api_secret”: “API SECRET”,
“subject”: “{{ $json.subject }}”,
“body”: “{{ $json.body }}”
“send_at”: “={{ new Date(new Date().getTime() + 1 * 60 * 1000).toISOString() }}”
}
You are missing comma , after “body”: “{{ $json.body }}”
This should work:
{
“api_secret”: “API SECRET”,
“subject”: “{{ $json.subject }}”,
“body”: “{{ $json.body }}”,
“send_at”: “={{ new Date(new Date().getTime() + 1 * 60 * 1000).toISOString() }}”
}
