通过RESTful API

时间:2017-09-13 12:49:36

标签: python rest api jira tempo

我试图用python脚本获取我的JIRA工作日志的速率。我有Tempo Timesheet插件,带有基础,时间表,帐户和团队的API。一切都是最新的。这是我最喜欢的过程:

  1. 获取工作日志

    /rest/api/latest/worklogs?[params]
    
  2. 获取有关问题的工作日志的帐户密钥

    /rest/api/latest/issue/[issue_key]
    
  3. 获取帐户数据

    /rest/tempo-accounts/1/account/key/[account_key]
    
  4. 获取会员角色

    /rest/tempo-teams/2/team/1/member
    
  5. (循环bean并搜索工作日志的成员)

    1. 现在我有帐户密钥和成员角色ID。哪个API调用可以帮助我获得相关的费率和货币?
    2. 在docs中写的是那个调用

      /rest/tempo-accounts/1/account/key/[account_key]
      

      应该回应费率表ID:

      https://tempo.io/doc/accounts/api/rest/latest/#1463521625

      有了这些信息,我可以从

      中提取所有内容
      /rest/tempo-accounts/1/ratetable/global/
      

      就我而言,这样做很有效。帐户响应中没有费率表条目。这可能是一个许可问题吗?你们中的任何人都知道更聪明的方法来获得工作日志的费率和货币吗?

0 个答案:

没有答案