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

Create url to push data into Salesforce
Our organisation is using Novanet VoIP. We want to integrate this with our Salesforce. We have created a object Novanet related to Accounts and contacts with the following fields -
Novanet Name
Date/Time of call
Call Duration
Account
Contact
Owner
We are currently using data loader to feed novanet call data into Salesforce. Can someone help me create a url which will directly create a record on Salesforce when calls are made from Novanet.
Thanks.
Novanet Name
Date/Time of call
Call Duration
Account
Contact
Owner
We are currently using data loader to feed novanet call data into Salesforce. Can someone help me create a url which will directly create a record on Salesforce when calls are made from Novanet.
Thanks.
Basically, you could create a REST API method in Apex that would accept the fields and then update Salesforce as required. The trick here would be authenticating the request to Salesforce. You can also do this with a Force.com site if you don't want authentication. See Public RESTful Web Services on Force.com Sites (https://developer.salesforce.com/blogs/developer-relations/2012/02/quick-tip-public-restful-web-services-on-force-com-sites.html)