Jira Cloud integration with IICS using CAI - api

We are trying to integrate JIRA Cloud API with IICS. Not finding enough information on how to configure this. Can someone please guide how to configure this in informatica CAI? Thanks

Related

How do we integrate the test evidences with X-Ray Jira via API's?

I want to upload the test evidences of an automation tests to the X-Ray Jira through API.
I need what API and Endpoint is being consumed to upload the test execution evidences to X-Ray Jira.
You can find information on the documentation regarding the API of Xray here: https://docs.getxray.app/display/XRAYCLOUD/Version+2
You also have multiple tutorials showcasing importing results from different tools and frameworks here: https://docs.getxray.app/display/XRAYCLOUD/TTT%3A+Automation
Make sure you use the right documentation version depending on your Jira installation: Cloud or Server/DC. The above documentation is for Cloud (you can find the same one for Server).

Anypoint Platform Apps/Schedulers

Is there a way to get details of all the apps in an Anypoint Platform Business Group. For example, if there are 3 apps available in the RunTime Manager, I am looking at details like below:
I know there are cloudhub APIs which can get the details, but is there a custom API? If yes, can it be integrated with a reporting tool like PowerBI to create a live dashboard?
Please advise.
All or nearly all REST APIs provided by Anypoint Platform return JSON, including the CloudHub REST API. You can check the platform APIs in MuleSoft Dev Portal.
You can use the cloudhub/api/v2/applications/{domain} endpoint to get details of an application: https://anypoint.mulesoft.com/exchange/portals/anypoint-platform/f1e97bc6-315a-4490-82a7-23abe036327a.anypoint-platform/cloudhub-api/minor/1.0/console/method/%231839/
To get the schedulers information the endpoint there is a cloudhub/api/applications/{domain}/schedules endpoint: https://anypoint.mulesoft.com/exchange/portals/anypoint-platform/f1e97bc6-315a-4490-82a7-23abe036327a.anypoint-platform/cloudhub-api/minor/1.0/console/method/%233128/
Both return JSON responses with the information described in above links.
I don't know if that is useful for PowerBI. If not, you can develop your own custom application to query above information and return it in a suitable format. Your application can implement an API of your design if needed.

How to integrate Hybris with SAP Identity Management?

I already found some useful documentation about integrating Hybris with SAP Cloud Platform Identity Authentication in here https://help.sap.com/viewer/50c996852b32456c96d3161a95544cdb/1905/en-US/de5382b859aa437da1b0428555169a35.html
But what I need to do and was not able to find is how to integrate Hybris with SAP Identity Management(https://help.sap.com/viewer/product/SAP_IDENTITY_MANAGEMENT/8.0/en-US)
Is there someone who knows how can this be done and what OOTB extensions are needed in order to achieve this ?

What are feature not supported by Apache Metamodel Salesforce conenctor

I had gone through the API provided by Apache metamodel to connect Salesforce.com, most of API are there which can help perform CURD operation. But, i am unable to find the features which are not supported by Apache metamodel API's.
Is there any document reference for complete API guide and feature document for Apache metamodel Salesforce.com connector ?
Only direct documentation I can find is on MetaModel's Wiki.
To answer this question from a Salesforce side: the most obvious caveat is that Salesforce isn't an ACID or SQL compliant database. The source for the Salesforce connector is the best place to see how everything is translated. The data context is a wrapper around Salesforce's Partner API, so you run the risk of no SQL to API translation being available.

Mule:How to connect Mule ESB with Hybris?

I have a requirement to connect Mule ESB with Hybris. I didnt find Hybris connector provided by Mule( Also didnt find sample examples as well). This is the 1st time going to try Mule with Hybris..Please let me know the steps or efficient procedural way to connect Hybris.
Is the hybris URL enough to connect?. Please suggest me with your thoughts to implement. Thanks in advance.
Hybris has many ways to integrate with their platform. If you have a login you can access their docs which details examples of integration with the platform including JMS and the Platform Web Services.
There is no connector supplied by Mule, but you can access their Platform Web Services which are implemented with a HTTP Restful API using the Mule http transport or by building your own connector using the Mule DevKit.
The hybris wiki has pages dedicated to most of the endpoints and the request/response formats. You can view this here if you have a login: https://wiki.hybris.com/display/release5/WebService+API+-+Reference
Also, in your hybris installation there are a bunch of examples in /bin/ext-platform-optional/platformwebservices/src...
and /bin/ext-platform-optional/platformwebservices/testsrc which show the actual web service implementations and their test cases using Jersey client.