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
1
vote
1 answer

How to add a VersionOne Asset with no linked asset

This is a follow-on question from "Adding a VersionOne expression using the REST API"... I am trying to add an Expression (comment) to a story in VersionOne. I can now do this (with some help - see original post), but I have a related question: In…
roryhewitt
  • 4,097
  • 3
  • 27
  • 33
1
vote
2 answers

Is it possible to get a deep copy of objects using the VersionOne Java SDK?

Let's say I want to calculate the cumulative estimate of my defects. I do double estimate = 0.0; Double tEstimate = 0.0; Collection defects = project.getDefects(null); for(Defect d : defects){ tEstimate = d.getEstimate(); if(tEstimate…
Michael Munsey
  • 3,740
  • 1
  • 25
  • 15
1
vote
2 answers

How to create a new acceptance test with a parent regression test using VersionOne .Net SDK

I want to create a new test with a regression test as the parent using the VersionOne .Net SDK. This code throws Violation'Required'AttributeDefinition'Parent'Test: NULL on the line _services.Save(newAsset) This is the code I am using: var…
Jonathan Kittell
  • 7,163
  • 15
  • 50
  • 93
1
vote
1 answer

V1APIConnector deprecated

I'm getting a warning while building my asp.net project that V1APIConnector is deprecated and requesting me to use VersionOneAPIConnector. Using the new VersionOneAPIConnector I had to do the following to get a child projects: build a string (ex:…
netizen
  • 25
  • 4
1
vote
1 answer

How to add Link to Story via VersionOne REST API?

I'm able to create new Story via POST to /VersionOne/rest-1.v1/Data/Story with corresponding XML payload. Setting all attributes (including relational) works like a charm. However I'm unable to figure out how to add a Link asset to the Story…
plesatejvlk
  • 427
  • 6
  • 15
1
vote
1 answer

Invalid OID Token

I am using the VersionOne SDK and keep getting an error about the OID being invalid. However, when I use that OID to look up the test in VersionOne it is the correct OID for the test. A first chance exception of type…
Jonathan Kittell
  • 7,163
  • 15
  • 50
  • 93
1
vote
1 answer

How do I programatically change the status of a test in VersionOne?

I am posting this because it might help someone using the VersionOne API SDK Client. I wanted to change the status of a test programmatically, to one of the following categories: Ready, InTesting, Passed, or Failed. I originally tried to change the…
Jonathan Kittell
  • 7,163
  • 15
  • 50
  • 93
1
vote
3 answers

How to get total count of paged data using query.v1

How do I get the total count of results when paging with the query.v1 endpoint? rest-1.v1/Data A request like this: /rest-1.v1/Data/Member?page=2,0 returns the following: ... Note the attribute…
Adam Anderson
  • 339
  • 3
  • 14
1
vote
1 answer

Burndown query data via api does not match Report in VersionOne

I'm using the below query to provide me burndown data to be used by a chart - from: Timebox select: - Name - Workitems.ToDo.@Sum where: BeginDate: 2014-01-30T00:00:00.000000 Schedule.ScheduledScopes.Name: My Project Name asof:…
amchi
  • 21
  • 4
1
vote
1 answer

Is there a way to get the current sprint name using the VersionOne API?

I know that Sprint in the UI maps to the underlying asset types called Timebox. And I know I can get the Name of a Timebox using the rest-1.v1/Data endpoint: /rest-1.v1/Data/Timebox?sel=Name&page=10,0 When I examine the metadata, I…
ian.buchanan
  • 314
  • 1
  • 10
1
vote
1 answer

how to make authentication using version one api

I want to export data from VersionOne into my own Java application. Please help me retrieve this data from it. I used the following code but it is not working. V1APIConnector dataConnector = new…
Junaid Akhtar
  • 317
  • 1
  • 3
  • 13
1
vote
1 answer

In VersionOne REST API how does one use multiple “with” statements with multiple “Where” clauses?

With the following query: Base-URL/rest-1.v1/Data/Epic?sel=Category.Name,Custom_RoadmapInOut&where=Number=$numbers&with=$numbers=E-05322%2CE-05280%2CE-05616%2CE-04942%2CE-04921 I am getting the following response:
1
vote
2 answers

Node.js - how to use external library (VersionOne JS SDK)?

I'm trying to use VersionOne JS SDK in Node.js (https://github.com/versionone/VersionOne.SDK.JavaScript). I'm simply downloading whole library, placing it alongside with my js file: var v1 = require('./v1sdk/v1sdk.js'); var V1Server =…
Jakub Krawczyk
  • 103
  • 1
  • 8
1
vote
1 answer

How do I export backlog from versionone to JIRA?

How do I export backlog from versionone to JIRA? do I have an excel file, or xml.
Nahser Bakht
  • 920
  • 2
  • 13
  • 27
1
vote
1 answer

VersionOne: query.v1 how to generate a .V1.Ticket.VersionOne.Web ticket for client.Headers["Cookie"]

I have access to Summer2013 of Versionone. I am trying to access it via new query.v1 using the Json Example which uses a client header cookie that looks like this: _client.Headers["Cookie"] = ".V1.Ticket.VersionOne.Web=" + ticket; How do I…
Remy
  • 407
  • 3
  • 17