I need to access "Issues in Feature" stories, but don't see how - api

I don't see a way to access "Issues in Feature" stories. Can someone point me in the right direction? Any help is greatly appreciated!
I'm using the JIRA latest API (I think 7.1.1), and can make other calls to get info from Jira, just haven't found a way to get the "child" stories from this section.

By Issues In Feature I assume you want to search for Stories (or other issue types) linked to an issue of type Feature.
If you use an add-on like Script Runner, you get access to additional JQL functions that allow you to query for issues linked to each other. Look here for its documentation.
The JQL you end up with can also be used in REST API calls.

Related

Cargowise eAdaptor API manual + integration with QlikSense

just wanted to ask, if somebody has a manual for eAdaptor API for Cargowise?
We are trying to get the data from the system to QlikSense via REST API and we are not entirely sure how to do it. We do have an URL that will get us probably to some "middle man", however we still need to create a query for a specific (for example) shipment.
If somebody was working with this API and would have some insight, any help would be much appreciated.
There is an "eAdaptor Developers Guide.pdf" download which contains all the info about the CargoWise side of things.
You'll need someone with a CargoWise instance to download it for you from the following location in the CargoWise portal:

Has anyone come across issue[]?

issue[] in UiPath.
So I downloaded an extension / package from UiPath GO! named as "Jira Integrating Software". This Packages comes with several APIs to access Jira tickets.
I was working with one of these APIs called "Search by JQL". JQL is Jira Query Language comes in handy for Advance searching. The output type of this "Search by JQL" activity is issues[].
Now when I am Iterating this array it gives me an output of "UiPath.JiraSoftware.Models.Issue"
You should use a For Each activity iterating the ResultArray Array you got from the Search JQL.
The following is just pseudo code! But it should work like this. Maybe the name of the property is not IssueId. That was not completely told in the document. But this you can when you inspect it by using the debug mode:
You should also have a look on the official Jira UiPath page. This resource contains all of the concepts you will need.

create query using webservice api for Rally

I am trying to write a query in Ruby to insert a user story in Rally using WSAPI. I read through https://rally1.rallydev.com/slm/doc/webservice/.I looked it up and found that wsapi has a create() method, but I am not aware of its signature. I know it uses PUT/Post method for creation, but I just need an example to understand how to write create queries. Does anyone know of any useful resource to know more about this? I have all my code ready, just need information about writing "create" queries using Rally's WSAPI.
Thanks
There is a full directory of Ruby REST examples in the Github Repository for RallyRestToolkitForRuby:
https://github.com/RallyTools/RallyRestToolkitForRuby/tree/master/examples
This create example may be of particular interest. It's for a Defect, but the same logic would apply to Stories:
04-create-defect.rb

Google plus API - how to add "communities" as 'data-recipient'

I am trying to include a community as a recipient by using the Plus API and the 'data-recipients' property.
When I add the community ID, it shows "unknown user".
If I click manually, that is click on the IFrame, it allows me to see and choose the community I want to share the post with.
Any help on how to do so will be much appreciated.
thank-you.
I don't believe that this is supported. Communities are not users and the API does not support treating them as users even though in some cases they function similarly.
I tried testing this myself and I got a name unavailable value in the share dialog and it posted, but the share never displayed in the community.

Rally, Infopath, and SharePoint

I am trying to pull a list of user stories for any project using infopath.
I am able to connect to the source https://rally1.rallydev.com/slm/webservice/1.31/subscription?stylesheet=/slm/doc/webservice/browser.xsl but am not able to pull anything meaningful from it
at all. Can someone help me?
Its a very easy thing to do with other data sources, such as with active directory:
http://kwizcom.blogspot.com/2007/11/importing-data-from-ad-to-infopath-2007.html
If you can help steer me towards finding just a list of user stories, I’d appreciate it!
What format would you like the data in?
Json:
https://rally1.rallydev.com/slm/webservice/1.31/hierarchicalrequirement.js
Xml:
https://rally1.rallydev.com/slm/webservice/1.31/hierarchicalrequirement.xml
All the objects exposed in the Web Services API have similar endpoints and query parameters.
Here is an example to pull back all stories that are in progress:
https://rally1.rallydev.com/slm/webservice/1.31/hierarchicalrequirement.js?query=(ScheduleState = "In-Progress")&fetch=Name,Owner,PlaneEstimate
You can test out other queries in the live web service docs as well:
https://rally1.rallydev.com/slm/doc/webservice/