Reputation: 11
Is there any way to log incoming and outgoing calls from my Android and move them into Salesforce?
Upvotes: 1
Views: 546
Reputation: 21
You can use the rest API, specially Salesforce Mobile SDK that work with it. I used it in a personal project and it works. You just have to allow access to your mobile app in SalesForce by creating a remote access in the setup of your SalesForce account.
http://wiki.developerforce.com/page/Mobile_SDK
Upvotes: 0
Reputation: 11
Take a look at Salesforce Call Tracker app to log your calls from Android into salesforce as activities. looks like it is exactly what you're asking
Upvotes: 1
Reputation: 19040
Yes, you can use the CallLogs content provider on Android to access the call log on the device, and you can then take that data and send it to Salesforce via their REST api, either to a custom object you define, or to the standard object Task, so that it'll appear in the activity history of the related data.
Upvotes: 1