Greetings!
I'm trying to integrate EspoCRM into Activepieces via an HTTP Request step, but the step is failing when testing for some reason and I'm not sure why.
I'm using the Administration > Lead Capture option within EspoCRM that provides the necessary HTTP Request information (URL, Method, Headers, and Payload) however it fails when testing. Here is my configuration.
Here is the Payload:
I've also tried without the "description" line item as well without success.
Any ideas about what I'm doing wrong or why this would fail? I'm capturing form information from Contact Form 7 and trying to assign certain fields to the Lead Capture fields.
Thanks!
I'm trying to integrate EspoCRM into Activepieces via an HTTP Request step, but the step is failing when testing for some reason and I'm not sure why.
I'm using the Administration > Lead Capture option within EspoCRM that provides the necessary HTTP Request information (URL, Method, Headers, and Payload) however it fails when testing. Here is my configuration.
Here is the Payload:
HTML Code:
{ "website": "{{trigger['body']['WebsiteURL']}}", "lastName": "{{trigger['body']['LastName']}}", "firstName": "{{trigger['body']['FirstName']}}", "accountName": "{{trigger['body']['BusinessName']}}", "description": "{{trigger['body']['Whattypesofservicesdoyouneed \n {{trigger['body']['Howsatisfiedareyouwithyourexistingwebsite \n {{trigger['body']['ProjectInformation']}}']}}']}}", "emailAddress": "{{trigger['body']['Email']}}" }
Any ideas about what I'm doing wrong or why this would fail? I'm capturing form information from Contact Form 7 and trying to assign certain fields to the Lead Capture fields.
Thanks!
Comment