You need to sign in to do that
Don't have an account?

Create XML files and send https requests via Salesforce
Hello I am a salesforce administrator and we need salesforce to send realtime updates to update another system called FileMaker Pro. The filemaker developer is asking the following;
"Filemaker 16 has been released now and comes with a super simple restful API where Salesforce can literally send a https request XML file and update or create records instantly in the Filemaker. The question is how to create XML files and send https requests via Salesforce – do you know, I can define the format for you? I ideally want it to run the request on save for example so any fields which filemaker needs it gets instantly.
"Filemaker 16 has been released now and comes with a super simple restful API where Salesforce can literally send a https request XML file and update or create records instantly in the Filemaker. The question is how to create XML files and send https requests via Salesforce – do you know, I can define the format for you? I ideally want it to run the request on save for example so any fields which filemaker needs it gets instantly.
This requires quite a bit of APEX expertise.
In simple terms, you can use a trigger to call filemaker api and post the data.
Here is a tutorial on how to make REST API calls: https://trailhead.salesforce.com/modules/apex_integration_services/units/apex_integration_rest_callouts
Here is an article on how to create XML data: https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_xml_dom.htm
or you can use my code to serialize object data to XML : https://github.com/skolakan/Apex-XML-Serializer
Try it on and let me know if you are stuck somewhere.