Rally, Infopath, and SharePoint - rally

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/

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:

Wix bookings use getServiceAvailability( ) and exported to JSON

I created a website that accepts appointments online using wix booking. I already managed to export the appointments with all the details to JSON format.
I am trying to do the same to be able to create the appointments from an external app but for this I want to be able to first obtain getServiceAvailability() from wix-bookings API and I can't find a way to do it. I have tried in all the ways that I know and I do not get any results, I am not a programming expert and that is why I ask for help in this way, if someone who knows wix well and how to work with its API that could help me at least have one basis of how to do it. Thank you
If you want to get the availability information from an external service, you can create an HTTP function to expose that information.

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

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.

Bulk extract with Authenticated Connector (import.io)

I am new to import.io and this forum.
I am trying to extract information from a target database where I have to run a query with an input. With help of the support, I successfully created the authenticated connector. With multiple inputs that have to be manually entered in the UI, it fetches the data properly.
The problem is I have more than 10,000 inputs to run, so it has to be in a form of bulk extraction. import.io support told me that they do not have this feature within their UI and suggested to use their API posted in here: http://api.docs.import.io/#!/Query_Methods/queryPost.
Could anyone walk me through to make a use of this? I just need a working script that takes multiple string lines as inputs and run the connector that I built and post the result. I am not very familiar with this kind of technology but I am very willing to learn.
Thanks all in advance!
I would be happy to walk you through a bit of an into. It will be a bit basic though since I don't know your specific use case.
Yes, support was correct. You will need to use the POST query in order to pass your authentication credentials as inputs.
I will break down this query by steps. Essentially, our API docs are just a simple UI to pass through your credentials, then you can generate a query API.
ID - This is the GUID of your connector. This information can be found at the end of the URL, like this: https://import.io/data/mine/?tag=CONNECTOR&id=33f4e828-25ce-40c4-948c-9b734c70d1ab
Query - This is where you will put the inputs from your connector in order to execute. Be sure to keep this in structured JSON or it will bring back errors when you are querying.
Once you have successfully entered that information you will query the API.
This will give you the request URL that you need to query the API.
If you have anymore questions, just let me know.
Thanks,
Meg

Is there anyway to get this table data into iOS app?

I work with a company who outsources their website. I'm trying to retrieve data from the site without having to contact those who run it directly. The table data I'm trying to retrieve can be found here:
http://pointstreak.com/prostats/scoringleaders.html?leagueid=49&seasonid=5967
My methodology thus far has been to use google chrome's Developer Tools to find the source page, but when I filter under the network tab for XHL, only the info of the current games can be found. Is there anyway to scrape this data (I have no idea how to do that; any resources or direction would be appreciated) or another way to get it? Am I missing it in the developer tools?
If I had to contact those who run the website, what exactly should I ask for? I'm trying to get JSON data that I can easily turn into my own UITableViewController.
Thank you.
Just load the page source and parse the html.
Depending on your usage there may well be a copyright issue, the page has an explicit copyright notice so you will need to obtain explicit permission for your use.