Questions tagged [versionone]

Ask questions related to integrating with VersionOne. VersionOne is an agile project management tool that has an open platform. There are dozens of official integrations as well as many public 3rd party and private integrations.

VersionOne is an enterprise agile solution for software organizations scaling agile.

Official site: https://www.versionone.com/

User group: https://groups.google.com/forum/#!forum/versionone-users

160 questions
0
votes
1 answer

Cannot assign new value to a read-only attribute

I am working with an SDK that can query a set of data as well as update data with a restful web service called VersionOne. We use the web service to document QA testing. Each test has attributes such as "Name", "Status", etc. Most of the attributes…
Jonathan Kittell
  • 7,163
  • 15
  • 50
  • 93
0
votes
2 answers

How do I update the status of an asset in VersionOne using the REST API

How can I update the status of an asset in V1 using the Rest API? I would assume I could do something like this using the Python SDK: from v1pysdk import V1Meta v1 = V1Meta() for s in (v1.PrimaryWorkitem .filter("Number='D-01240'")): …
Andreas
  • 1
  • 1
0
votes
1 answer

Querying custom field through REST API in VersionOne

Query: I have a custom field named Custom_ProductOwner and I am trying the below query. /rest-1.oauth.v1/Data/Story?sel=Custom_ProductOwner I get this error. How do I query custom fields using REST API? {"Error":{"Exception":[{"Message":"Unknown…
bhushan154
  • 13
  • 6
0
votes
1 answer

How do I retrieve Story conversations using the versionone rest endpoint?

How do I retrieve story conversation using the Rest API? I have tried /rest-1.oauth.v1/Data/Message but it does not return any conversations.
bhushan154
  • 13
  • 6
0
votes
1 answer

Unable to retrieve Story priority using versionone java sdk

I am trying to to get the Priority and Status of a Story item. I am trying the following but I am not getting any results. Note, I am successfully getting the Name and Description in the below code. Just priority and status are not returning any…
bhushan154
  • 13
  • 6
0
votes
1 answer

Why does my query to VersionOne API using find does not return expected results?

I'm trying to use the VersionOne rest-1.v1/Data endpoint to find all stories with the string 9.00.00.01 in a particular field. Here's the query (newlines added for readability): /rest-1.v1/Data/Story …
ian.buchanan
  • 314
  • 1
  • 10
0
votes
1 answer

VersionOne defect status changes

I'm trying to find some stats about defects in version one but the reporting and API are getting the type of data I need. I'm trying to find how long defects sat in a "ready" status and how long defect took to move from "developing" to "testing". I…
puppybits
  • 1,110
  • 12
  • 16
0
votes
2 answers

Relashionship between Epic and Rquest in VersionONE REST Response

I am creating a Tree Table which list the Requests, Epics they contain and then the backlogs, such as this: Request_1 |_Epic_1 |_Backlog_1 |_Backlog_2 ... The relationship between the Epics and the backlogs and easy because the Backlog data…
Anime
  • 111
  • 1
  • 7
0
votes
1 answer

How does one use the "with" statement on a "Where" clause via the REST API?

I am harvesting stories that do not have a new asset we added populated. I do not wish to see all such stories possible, but only the stories that belong to 9 specific programs. I was pointed to using the "with" selector in the "where" clause. This…
0
votes
1 answer

versionone -- How do i find a program(s) a story may be associated with from the rest-1.v1/Data/Story api

I have a report that looks for all stories in progress that do not have data in an assest we added. I need to filter the report future to limit those being reported on such that I know the stories are associated with any of nine “Programs”. Is there…
0
votes
1 answer

How to find all sprints in current project using VersionOne Rest API?

Please share a sample REST API query to get the list of all sprints in a given project. Thanks in advance.
prash7
  • 29
  • 1
  • 7
0
votes
1 answer

VersionOne: query.v1 C# OAuth2 gets 401 Unauthorized error but rest-1.oauth.v1/Data/ does work

I am able to do queries using OAuth2 and this: /rest-1.oauth.v1/Data/Story?sel=Name,Number&Accept=text/json However I am unable to get the OAuth2 and the new query1.v1 to work against the Sumnmer2013 VersionOne. I am getting (401) Unauthorized…
Remy
  • 407
  • 3
  • 17
0
votes
2 answers

VersionOne Usage

I'm new to VersionOne usage. I have downloaded the dll's of VersionOne API client and 'am trying to use to get following agile metrics. I'm trying to write a sample .Net application which should be able to pull data from the hosted version one site.…
prash7
  • 29
  • 1
  • 7
0
votes
1 answer

VersionOne - does the new query.v1 support extracting attachments?

VersionOne - does the new query.v1 support extracting attachments? If so, could someone provide an example? This query.v1 just came in in VersionOne Summer 2013 (version…
Remy
  • 407
  • 3
  • 17
0
votes
1 answer

VersionOne: C# where to find VersionOne.SDK.APIClient that contains V1OAuth2APIConnector?

I'm trying to access VersionOne using VersionOne.SDK.APIClient and OAuth2Client. I was able to create a client_secrets.json and stored_credentials.json I may not be using the right version of one of VersionOne.SDK.APIClient since it does not contain…
Remy
  • 407
  • 3
  • 17
1 2 3
10
11