The following operations are available for working with issues.Click an operation name to see details on how to use it.
...
- issueIdOrKey: Identifies the issue to retrieve. This can be an issue ID, or an issue key.
- fields : The list of fields to return for the issue.
- expand : The parameters to expand.
Sample request
...
Code Block |
---|
language | xml |
---|
title | Sample request for getTransitions |
---|
|
{
"username":"admin",
"password":"jira@jaffna",
"uri":"https://testcon.atlassian.net", "name":"admin",
"issueIdOrKey":"TEST-2"
} |
...
issueIdOrKey
: Identifies the issue whose comments you want to get. This can be an issue ID, or an issue key.- expand : The parameters to expand.
Sample request
...
Code Block |
---|
language | xml |
---|
title | Sample request for getComments |
---|
|
{
"username":"admin",
"password":"jira@jaffna",
"uri":"https://testcon.atlassian.net", "name":"admin",
"issueIdOrKey":"TEST-2"
} |
...
Code Block |
---|
language | html/xml |
---|
title | postComment |
---|
|
<jira.postComment>
<issueIdOrKey>{$ctx:issueIdOrKey}</issueIdOrKey>
<comment>{$ctx:comment}</comment>
<visibleRole>{$ctx:visibleRole}</visibleRole>
<expand>{$ctx:expand}</expand>
</jira.postComment> |
Properties
...