通过JIRA REST API检索Jira LinkTypes

时间:2015-07-16 20:54:32

标签: jira jira-rest-api jira-rest-java-api

我需要获取Jira已知的所有LinkTypes的完整列表。由于我找不到任何提供此信息的文档,我宁愿通过JIRA REST API检索所有类型。有没有办法做到这一点?

 List<Type> types = jiraRestClient.runQuery("https://jira-host.com/rest/api/latest/<allLinkTypes>");

    ... 

@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({ "id", "name", "inward", "outward", "self" })
public class Type
{

    @JsonProperty("id")
    private String              id;
    @JsonProperty("name")
    private String              name;
    @JsonProperty("inward")
    private String              inward;
    @JsonProperty("outward")
    private String              outward;
    @JsonProperty("self")
    private String              self;

其他客户端已启动并正在运行。我只需要检索的URL。

1 个答案:

答案 0 :(得分:1)

我不确定,但我认为您正在寻找此REST请求。

  

/休息/ API / 2 / issueLinkType

示例: https://jira.atlassian.com/rest/api/2/issueLinkType

你也可以在这里找到文件。

https://docs.atlassian.com/jira/REST/latest/

感谢。