I have External Application where all the contacts are stored, where all the CRUD operation will happen in External Application, we have to replicate same in RightNow frequently, we have exposed the Web Service in External Application, I am new to Web service regarding RightNow perspective, so I am not aware where to write code to Pull all the Contact from external webserver in RightNow. it would be great help if any one provide document or reference for this.
Import Contact Using Webservice
101 Views Asked by Santosh At
1
There are 1 best solutions below
Related Questions in WEB-SERVICES
- couldn't copy pdb file to another directory while consuming wcf web service
- .net rest service with JSON string and consumed with java client
- How to send Rest GET request that contains "#" value in url parameters?
- Looking the Method that MANUALLY INSTALL PHP on OSX Yosemite
- How to use @queryparam when using array in Java
- How to accept cookies when using a webservice - Android?
- zend soap server reading xml attributes
- Web Service Error path property must set before calling the send method
- Error with kSOAP2
- JAX-RS service response is returning double fields without decimal places
- How can I call a ASP.Net webservice using AJAX without calling controller
- Generate clients for multiple WSDL files and place it in different package through Spring Gradle
- File upload in AXIS2 webservice
- How to route by call method in proxy with WSO2?
- fetch data from web service to dataset in Delphi
Related Questions in RIGHTNOW-CRM
- How to get Answer object with variables in Rightnow SOAP API
- When i create and incident in customer portal the redirection put refno on url
- Compare entered password with password in Oracle RightNow database
- How To Query Database Dictionary Tables In Oracle Service Cloud (Oracle RightNow)
- RighNow ProductCategoryInput Widget change the selected value
- Azure AD SAML entity ID allowed characters
- Method chaining with variable variables
- serve oracle service cloud Customer portal locally?
- Date issue with SOAP API (Oracle Rightnow Cloud Service)
- rightnow-crm and unavailable hours
- Trying to figure out what {s: ;} tags mean and where they come from
- Uncaught SyntaxError: Unexpected identifier
- How to implement single sign on using SML2.0 in RightNow frame work?
- jQuery conflicting?
- onchange on widget oracle right now
Related Questions in ORACLE-SERVICE-CLOUD
- When i create and incident in customer portal the redirection put refno on url
- Is there a way to get pdf documents digitally signed in Oracle Integration Cloud Service or Oracle Visual Builder?
- ROQL count contact records with unique phone numbers
- Combining Conditions in Oracle Service Cloud Analytics Report
- Method chaining with variable variables
- serve oracle service cloud Customer portal locally?
- Date issue with SOAP API (Oracle Rightnow Cloud Service)
- Editing PDF before signing using DocuSign API
- Oracle Service Cloud Chat get attachments by engagementID
- How to Bold Text - Non-HTML Way?
- Unable to install tensorflow on oracle server ubuntu
- Upload file into "assets" folder via move_uploaded_file()
- Set FormInput Default Value from HTML Select
- Oracle Service Cloud SOAP API RunAnalyticsReport Filter Issue
- Where/how to retrieve a file attachment sent through web services through oracle service cloud?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
If I understand your question correctly, this can be easily done in RightNow in two ways-
Manually: If this is one time work and u can do it manually then use the RightNow Import Wizard. Get all your contacts exported in the specific CSV format and then use the wizard to upload all records in one go.
Automation: If this "On The Go" functionality then you can use the RightNow SOAP/REST services to create the contact whenever it is getting created/updated in the third party System. For this you can write the scripts to trigger on the events of your third party system. Below is the document link. http://docs.oracle.com/cloud/latest/servicecs_gs/CXSVC/api-contacts.html
Hope that helps!!
Thanks, Abhishek