0

此语法不起作用:

示例 URL:https ://rally1.rallydev.com/slm/webservice/v2.0/Defect/ObjectID?key=key

{ "Defect":
{
Discussion":
{
"Text": "some text"
} 
}
}
4

1 回答 1

1

A conversation post has to be created with a reference to the artifact.

Here is a POST URL format:

https://rally1.rallydev.com/slm/webservice/v2.0/ConversationPost/create?key=abc123...

In this example 777 is ObjectID of a defect on which you want to create a conversation post. Here is the Request Body:

{
"ConversationPost": {
"Artifact": "/defect/777",
"Text":"some text"
}
}
于 2013-10-01T16:53:59.503 回答