versionone

Aggregation doesn't seem to match data in the VersionOne RESTful API

南笙酒味 提交于 2019-12-24 11:14:04
问题 Given this query (spacing added for readability): rest-1.v1\Data\Story? sel= Children.ID, Children.Actuals.Value, Children:Task.@Count, Children.Actuals.Value.@Sum.Value &where=Number='B-02833' I received the following in response: <Assets total="1" pageSize="2147483647" pageStart="0"> <Asset href="/rest-1.v1/Data/Story/13195" id="Story:13195"> <Relation name="Children.ID"> <Asset href="/rest-1.v1/Data/Task/34505" idref="Task:34505"/> <Asset href="/rest-1.v1/Data/Task/34506" idref="Task:34506

How do I use the version one api to get project and sprint burndown charts?

我怕爱的太早我们不能终老 提交于 2019-12-23 12:50:29
问题 I am trying to use the Version One api to get the project and sprint burndown charts. I am reading this page but I am just getting confused. Has anybody done something similar and have any tips for how to hit the api to get what I want? 回答1: The VersionOne api does not serve images or chart specific data. You can use the query language and the rest endpoint to produce the data that is needed for a burndown. You would need to be able to read/parse the data and produce a graph yourself. With

Adding a VersionOne expression using the REST API

女生的网名这么多〃 提交于 2019-12-12 22:26:29
问题 I am trying to create a new 'Expression' in VersionOne - effectively adding a new 'comment' to a conversation. In theory, the rest-1.v1/Data API should allow this, but I can't figure out how to do it - there is precious little documentation about using the API (using POST) to create objects. FWIW, here's what I'm doing (after successfully accessing the server with valid credentials): URL: /rest-1.v1/Data/Expression XML: <Asset href="<Server Base URI>/rest-1.v1/Data/Expression"> <Attribute

VersionOne API Client not recognizing asset types?

大城市里の小女人 提交于 2019-12-11 10:24:54
问题 I am running into a problem with the VersionOneAPIClient in that it will not recognize anything I give it ass an asset type. I understand the Attribute definitions probably don't make any sense but I've been trying pretty much everything. My end goal would be to query TeamRooms and get team names from all the teams in the team room. It's my understanding from the documentation on asset types and how to query that this should work but that's what we all say. I am using: C# ASP.NET,