Create Rally user story under a team feature by using Rally API in javaHow to make a User story ID act as a link in the custom report in rallyHow to create new TimeEntryValue in RallyPossible to create Rally TimeEntryItem for other user?How to connect Rally API (python) to the specific reports under 'Report' sectionMigrating associated tasks and defects with the user story using python rally APIAdd Watcher - Rally Rest APIHow to retrieve the user story and build model changesets from RallyJava Rally api lookback api authenticationCreate Rally user story and map features using Rest APIHow to delete initiative , features and user stories from Rally?

Is there an injective, monotonically increasing, strictly concave function from the reals, to the reals?

Keeping a ball lost forever

Do the primes contain an infinite almost arithmetic progression?

Why is it that I can sometimes guess the next note?

Why would a new[] expression ever invoke a destructor?

What is Cash Advance APR?

Can disgust be a key component of horror?

How much character growth crosses the line into breaking the character

What is the evidence for the "tyranny of the majority problem" in a direct democracy context?

Using substitution ciphers to generate new alphabets in a novel

I'm the sea and the sun

Did arcade monitors have same pixel aspect ratio as TV sets?

Can I still be respawned if I die by falling off the map?

Plot of a tornado-shaped surface

What exact color does ozone gas have?

Why does the Sun have different day lengths, but not the gas giants?

Can a stoichiometric mixture of oxygen and methane exist as a liquid at standard pressure and some (low) temperature?

Why Shazam when there is already Superman?

Strong empirical falsification of quantum mechanics based on vacuum energy density

Why does a simple loop result in ASYNC_NETWORK_IO waits?

putting logo on same line but after title, latex

Can a College of Swords bard use a Blade Flourish option on an opportunity attack provoked by their own Dissonant Whispers spell?

Pre-mixing cryogenic fuels and using only one fuel tank

Open a doc from terminal, but not by its name



Create Rally user story under a team feature by using Rally API in java


How to make a User story ID act as a link in the custom report in rallyHow to create new TimeEntryValue in RallyPossible to create Rally TimeEntryItem for other user?How to connect Rally API (python) to the specific reports under 'Report' sectionMigrating associated tasks and defects with the user story using python rally APIAdd Watcher - Rally Rest APIHow to retrieve the user story and build model changesets from RallyJava Rally api lookback api authenticationCreate Rally user story and map features using Rest APIHow to delete initiative , features and user stories from Rally?













-1















I have written the below code to create a user story under a team feature but I am getting the error:



"_rallyAPIMajor":"2","_rallyAPIMinor":"0","Errors":["Cannot parse object reference from "/teamfeature/29047088908""],"Warnings":["It is no longer necessary to append ".js" to WSAPI resources."]


Code:



JsonObject newEpic = new JsonObject();
newEpic.addProperty("Name", "Test User story");
newEpic.addProperty("Workspace", "/workspace/27154375360");
newEpic.addProperty("Project", "/project/277855980852");
newEpic.addProperty("Owner", UserInfo("xxxxx", restApi));
newEpic.addProperty("PortfolioItem", "/teamfeature/29047088908");
CreateRequest createRequest1 = new CreateRequest("hierarchicalrequirement", newEpic);
CreateResponse createResponse1 = restApi.create(createRequest1);









share|improve this question









New contributor




Ananta Jena is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • i am able to create the story but the team feature is not linked with the newly created story

    – Ananta Jena
    yesterday















-1















I have written the below code to create a user story under a team feature but I am getting the error:



"_rallyAPIMajor":"2","_rallyAPIMinor":"0","Errors":["Cannot parse object reference from "/teamfeature/29047088908""],"Warnings":["It is no longer necessary to append ".js" to WSAPI resources."]


Code:



JsonObject newEpic = new JsonObject();
newEpic.addProperty("Name", "Test User story");
newEpic.addProperty("Workspace", "/workspace/27154375360");
newEpic.addProperty("Project", "/project/277855980852");
newEpic.addProperty("Owner", UserInfo("xxxxx", restApi));
newEpic.addProperty("PortfolioItem", "/teamfeature/29047088908");
CreateRequest createRequest1 = new CreateRequest("hierarchicalrequirement", newEpic);
CreateResponse createResponse1 = restApi.create(createRequest1);









share|improve this question









New contributor




Ananta Jena is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • i am able to create the story but the team feature is not linked with the newly created story

    – Ananta Jena
    yesterday













-1












-1








-1








I have written the below code to create a user story under a team feature but I am getting the error:



"_rallyAPIMajor":"2","_rallyAPIMinor":"0","Errors":["Cannot parse object reference from "/teamfeature/29047088908""],"Warnings":["It is no longer necessary to append ".js" to WSAPI resources."]


Code:



JsonObject newEpic = new JsonObject();
newEpic.addProperty("Name", "Test User story");
newEpic.addProperty("Workspace", "/workspace/27154375360");
newEpic.addProperty("Project", "/project/277855980852");
newEpic.addProperty("Owner", UserInfo("xxxxx", restApi));
newEpic.addProperty("PortfolioItem", "/teamfeature/29047088908");
CreateRequest createRequest1 = new CreateRequest("hierarchicalrequirement", newEpic);
CreateResponse createResponse1 = restApi.create(createRequest1);









share|improve this question









New contributor




Ananta Jena is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












I have written the below code to create a user story under a team feature but I am getting the error:



"_rallyAPIMajor":"2","_rallyAPIMinor":"0","Errors":["Cannot parse object reference from "/teamfeature/29047088908""],"Warnings":["It is no longer necessary to append ".js" to WSAPI resources."]


Code:



JsonObject newEpic = new JsonObject();
newEpic.addProperty("Name", "Test User story");
newEpic.addProperty("Workspace", "/workspace/27154375360");
newEpic.addProperty("Project", "/project/277855980852");
newEpic.addProperty("Owner", UserInfo("xxxxx", restApi));
newEpic.addProperty("PortfolioItem", "/teamfeature/29047088908");
CreateRequest createRequest1 = new CreateRequest("hierarchicalrequirement", newEpic);
CreateResponse createResponse1 = restApi.create(createRequest1);






code-rally






share|improve this question









New contributor




Ananta Jena is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




Ananta Jena is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited yesterday









Marvin Klar

576221




576221






New contributor




Ananta Jena is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked yesterday









Ananta JenaAnanta Jena

1




1




New contributor




Ananta Jena is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Ananta Jena is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Ananta Jena is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












  • i am able to create the story but the team feature is not linked with the newly created story

    – Ananta Jena
    yesterday

















  • i am able to create the story but the team feature is not linked with the newly created story

    – Ananta Jena
    yesterday
















i am able to create the story but the team feature is not linked with the newly created story

– Ananta Jena
yesterday





i am able to create the story but the team feature is not linked with the newly created story

– Ananta Jena
yesterday












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);






Ananta Jena is a new contributor. Be nice, and check out our Code of Conduct.









draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55278901%2fcreate-rally-user-story-under-a-team-feature-by-using-rally-api-in-java%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes








Ananta Jena is a new contributor. Be nice, and check out our Code of Conduct.









draft saved

draft discarded


















Ananta Jena is a new contributor. Be nice, and check out our Code of Conduct.












Ananta Jena is a new contributor. Be nice, and check out our Code of Conduct.











Ananta Jena is a new contributor. Be nice, and check out our Code of Conduct.














Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55278901%2fcreate-rally-user-story-under-a-team-feature-by-using-rally-api-in-java%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Obelisk of Theodosius Contents History Description Notes Bibliography Further reading External links Navigation menuAge of spirituality : late antique and early Christian art, third to seventh centuryOver 60 picturesObelisks of the World41°00′21.24″N 28°58′31.43″E / 41.0059000°N 28.9753972°E / 41.0059000; 28.97539727724550-7235741376235741376

밀양 대씨 역사 각주 함께 보기 둘러보기 메뉴밀양 대씨

1973년 목차 사건 문화 탄생 사망 노벨상 달력 둘러보기 메뉴