无法访问 Jira Rest 中的自定义字段 Api

Not able to access a customfield in Jira Rest Api

我需要获取问题转换为“等待输入”状态的持续时间的时间戳。我尝试使用 custom_fields 使用此 URL <{jira-base-url}/rest/api/2/field> 我发现它有一个custom_field,如下

{
        "id": "customfield_13225",
        "name": 'Days in "Waiting-for-Input"',
        "custom": True,
        "orderable": True,
        "navigable": True,
        "searchable": True,
        "clauseNames": ["cf[13225]", 'Days in "Waiting-for-Input"'],
        "schema": {
            "type": "string",
            "custom": "com.onresolve.jira.groovy.groovyrunner:scripted-field",
            "customId": 13225,
        },
}

但是当我尝试访问此自定义字段时,我收到类似

的错误

AttributeError: 'PropertyHolder' object has no attribute 'customfield_13225'

我正在尝试的代码是

issue = jira.issue('ABC-1')
print(issue.fields.customfield_13225)

需要帮助才能访问此自定义字段。

我正在使用 JIRA Rest API 并使用 python 3.7

此自定义字段已被我的管理员阻止。必须请求他们允许访问此自定义字段,然后我才能访问此字段。