function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Forza di SognoForza di Sogno 

Tempworks & SFDC integration: notes

Hi,
Has anyone done integration between Tempworks and SFDC, at least one-way, from Tempworks to SFDC?  What's involved - does Tempworks have the capability of pushing out data, or will SFDC have to pull it somehow?

Thanks.
Shri RajShri Raj
I havent done any integrations with Tempworks. But there are two ways based on your description. 

1) SOAP API - Parsing Tempworks WSDL into Salesforce and accessing their Database through the API. 
2) REST API-  Asking Tempworks to call Salesforce. In which you can write a REST Class and collect the data. When they invoke your rest class you can return the data in JSON format. 

2nd option is easier based  on my exp.
Forza di SognoForza di Sogno
Thanks, Srikanth.