此语法不起作用:
示例 URL:https ://rally1.rallydev.com/slm/webservice/v2.0/Defect/ObjectID?key=key
{ "Defect":
{
Discussion":
{
"Text": "some text"
}
}
}
此语法不起作用:
示例 URL:https ://rally1.rallydev.com/slm/webservice/v2.0/Defect/ObjectID?key=key
{ "Defect":
{
Discussion":
{
"Text": "some text"
}
}
}
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"
}
}