mirror of
https://github.com/warmbly/warmbly.git
synced 2026-08-19 16:01:16 +00:00
17 lines
439 B
JSON
17 lines
439 B
JSON
{
|
|
"url": "/contacts",
|
|
"method": "POST",
|
|
"body": [
|
|
{
|
|
"email": "{{parameters.email}}",
|
|
"first_name": "{{parameters.first_name}}",
|
|
"last_name": "{{parameters.last_name}}",
|
|
"company": "{{parameters.company}}",
|
|
"campaigns": "{{add(emptyarray, parameters.campaign_id)}}"
|
|
}
|
|
],
|
|
"response": {
|
|
"output": "{{ifempty(body.data.0, body)}}"
|
|
}
|
|
}
|