I'm trying to create a Rally object (defect or user story) with a rank, using the .NET API. Does anyone have an example or a link to some documentation that might be useful? I have not found any way to invoke the rankBelow and rankAbove end-points from the .NET Toolkit. Any help appreciated.
.NET toolkit does not have this functionality built in. It's a missing feature and I submitted a feature request.
As of v3.1.1 this is now implemented! Create and Update both now have an overload which accepts a NameValueCollection of additional parameters to be included in the query string.
http://rallytools.github.io/RallyRestToolkitFor.NET/html/1ed8c970-1308-7e30-6039-fd33432bb5c1.htm
Related
Can anybody tell me where can I see a documentation for the sharepoint rest api ? I would like to see documentation like swagger has e.g. endpoints + dto objects. I need to make an integration with sharepoint to have CRUD functional for files. On Microsoft I see an articls that describe how to use it, but can`t find concrete list with endpoints and data tansfer objects.
Here the official Microsoft documentation : SharePoint REST service,
Please read all the part in the left navigation :
Bonus : Also, if you are a beginner and you want to start with SP API, I recommend you to use SP Insider extention, it is a free SharePoint Discovery tool for Developers. It allows you to explore the endpoint in an intuitive way and build your Query easily.
Cordially.
I'm working on MicroStrategy Project. I need to retrieve the metadata and underlying data used by existing reports and dossiers (could be created from outside of the organization and imported into my Intelligence Server, which means I don't have the data source available directly) through REST APIs.
I found the REST APIs family in this page https://lw.microstrategy.com/msdz/MSDL/GARelease_Current/docs/projects/RESTSDK/Content/topics/REST_API/REST_API_API_families.htm, and tried the libraries, reports, dossiers APIs, but the result is not what I expected. Could someone suggest which API I should try out?
I also notice that the GET api/search/results can probably be a solution, but I'm having difficulty to find the correct int for the types, subtypes and extTypes from the TypeTable (https://lw.microstrategy.com/msdz/msdl/GARelease_Current/docs/ReferenceFiles/reference/com/microstrategy/webapi/EnumDSSXMLObjectTypes.html#DssXmlTypeTable). Any suggestion for the int of types I should try would be appreciated!
Thank you!
I think you will have a lot more luck querying both the metadata and data within the objects using the newer Library Rest API. Here is a link to the documentation, which is much clearer and provides the opportunity to test out some of the code using MicroStrategy's demo server:
MicroStrategy REST
I am using Swagger Editor to generate YAML/JSON code that will display the details of my API in Swagger UI.
I would like for the consumers of my API to be able to view a revision history (ex. an added field, a field changed from 'optional' to 'required', etc) of the API document. Is this functionality supported by Swagger?
Now it's possible with swagger-diff
As far as I know it is not supported, at least in swagger-ui itself
While an interesting idea, this is a hard problem to solve. Please check out this feature request - https://github.com/swagger-api/swagger-spec/issues/233. Feel free to add comments and opinions to help push it forward.
I also tried REST API, but couldnt able to authrorize.
restApi = new RallyRestApi(mailId,"", "https://rally1.rallydev.com/", "v2.0");
There's a pretty thorough intro to using SSO with Rally's C# .NET dll in this prior answer:
How to SSO using Rally.RestApi.dll?
Note that the API has been updated substantially since this answer was posted, so you may need to adjust your code correspondingly.
I want a tutorial or document that describe API functions of microsoft UDDI, and how to find services from it. their functions and its input and output parameters in C#
I'm not sure if you are required to use the Microsoft API or not, but jUDDI has a .NET web service client.
It might be worth checking out and there are a number of examples.
http://svn.apache.org/repos/asf/juddi/trunk/juddi-client.net/