Can someone help me figure out what we are doing wrong? We are trying to build a workflow to post http to our ERP. We have a manual workflow button that is set to send HTTP request. Everything is working on the actual fields in the Deliver Order Module. However when we try to get a related module sub field we are not getting the workflow to pull and push that information.
In the warehouse module we created a field and have the darta in that field. We are able to use the sandbox formula and pull the data in that way and it works. However when trying to do an HTTP Push it just does not.. It will just push over "$warehouse.cDutchieLocationID" instead.
All the documentation we found seems like it "should" work. We are tying to not have to use Azure functions to store that data as well and just have it all come from Espo.
Any help will be very much appreciated.
Thank You,
Code:
{ "orderNumber": "{$number}", "deliveryDate": "{$deliveryDate}", "customerId": "{$customerId}", "customerName": "{$customerName}", "totalAmount": "{$totalAmount}", "shippingMethod": "{$shippingMethod}", "notes": "{$warehouse.cDutchieLocationID}" }
In the warehouse module we created a field and have the darta in that field. We are able to use the sandbox formula and pull the data in that way and it works. However when trying to do an HTTP Push it just does not.. It will just push over "$warehouse.cDutchieLocationID" instead.
All the documentation we found seems like it "should" work. We are tying to not have to use Azure functions to store that data as well and just have it all come from Espo.
Any help will be very much appreciated.
Thank You,
Comment