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
102 Views Asked by Santosh At
1
There are 1 best solutions below
Related Questions in WEB-SERVICES
- Apache CXF is unable to handle duplicate localnames
- Why do we call all http services 'Web Api/Web Service'?
- Postman Webservice PHP Curl Code POST request giving forbidden error when run in local
- Migrate ASMX web method to WCF which accepts string array
- PKIX failed when using custom SSLcontext with custom keyStore and trustStore
- Problems in Validations via Web Service in a Vue 3 Application
- Maven plugin 100% compatible Java21 to generate stub classes from WSDL file and generate *.wsdl from java classes? A solution
- Kubernetes Ingress Port to Port route
- How to handle a multi thread tests calling a single thread web service in .Net Framework 4.6?
- oracle.dataaccess.dll keep showing up as reference after build of C# web service using Oracle MDAC
- Your thoughts on the suggested architecture for addressing the challenges and maintenance of third-party API implementation
- Issue with BizTalk register WCF-WSHttp adapter while calling web service
- Does PHP SoapClient creates XML to be sent to webservice end point, based on WSDL file, while using CURL the XML should be manually created?
- Invoice API in Authorize.net like Square
- Publish JAXWS Endpoint in the same port than Spring boot
Related Questions in RIGHTNOW-CRM
- rightnow-crm and unavailable hours
- serve oracle service cloud Customer portal locally?
- RighNow ProductCategoryInput Widget change the selected value
- Calculate Business Days between two Dates Oracle Rightnow
- How To Query Database Dictionary Tables In Oracle Service Cloud (Oracle RightNow)
- In operator with one or More negative values not working with API Version 1.4 for Oracle Service Cloud
- Oracle service cloud Rnow- pulling custom reports via api
- Create a contact page in oracle rightnow customer portal
- How to change oracle rightnow namespaces object name dynamically using php
- Oracle RightNow mock api for automation
- Azure AD SAML entity ID allowed characters
- Using rn:page_title in the Meta Description Tag with Oracle RightNow
- OracleRightNow health check endpoint
- Get Outreach Activity data from ORN via SOAP calls
- Siebel > HTTP Post request is not being received properly
Related Questions in ORACLE-SERVICE-CLOUD
- Combining Conditions in Oracle Service Cloud Analytics Report
- ROQL count contact records with unique phone numbers
- Is there a way to get pdf documents digitally signed in Oracle Integration Cloud Service or Oracle Visual Builder?
- Unable to install tensorflow on oracle server ubuntu
- Editing PDF before signing using DocuSign API
- serve oracle service cloud Customer portal locally?
- Set FormInput Default Value from HTML Select
- Oracle Service Cloud Chat get attachments by engagementID
- Oracle Service Cloud SOAP API RunAnalyticsReport Filter Issue
- Method chaining with variable variables
- When i create and incident in customer portal the redirection put refno on url
- Import Contact Using Webservice
- Upload file into "assets" folder via move_uploaded_file()
- HTTP Session from service cloud using PHP code
- Remove the inbuilt filter contact ID from Incident Reports in Customer Portal in Oracle RightNow
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 # Hahtags
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