I am trying to configure an EspoCRM Workflow to trigger a WhatsApp message when a new Lead is created. The Lead entity already has a phoneNumber field, and I want to send a POST request to our API with a specific payload.
However, instead of sending only the defined payload, the workflow is sending all lead data, including extra fields like firstName, lastName, email, etc.
url;--https://your-whatsapp-api.com/v1/tmessage
payload:
{
"to": "+919700000002",
"namespace": "c6372e57_603a_4b72_baa8_cb41841772ed",
"name": "missed_call",
"language": {
"policy": "deterministic",
"code": "en"
}
}
However, instead of sending only the defined payload, the workflow is sending all lead data, including extra fields like firstName, lastName, email, etc.
url;--https://your-whatsapp-api.com/v1/tmessage
payload:
{
"to": "+919700000002",
"namespace": "c6372e57_603a_4b72_baa8_cb41841772ed",
"name": "missed_call",
"language": {
"policy": "deterministic",
"code": "en"
}
}
Comment