如何使用REST在Redmine中使用REST更新自定义字段



我正在尝试使用REST API更新使用文件类型的自定义字段。正确上载文件后:

curl --data-binary "@test.pdf" -H "Content-Type: application/octet-stream" -X POST -H "X-Redmine-API-Key: e1d815b8963e7b3950d4bea47959f874be755a2c" https://redmine-dev/uploads.xml

我得到我的令牌:

<?xml version="1.0" encoding="UTF-8"?>
<upload>
  <id>15</id>
  <token>15.cb4...</token>
</upload>

然后我尝试更新使用这些自定义的自定义,而无效:

<?xml version="1.0"?>
<issue>
  <custom_fields type="array">
    <custom_field id="4">
      <token>15.cb4...</token>
      <filename>test.pdf</filename>
    </custom_field>
  </custom_fields>
</issue>
<?xml version="1.0"?>
<issue>
  <custom_fields type="array">
    <custom_field id="4">
      <value>
        <token>15.cb4...</token>
        <filename>test.pdf</filename>
      </value>
    </custom_field>
  </custom_fields>
</issue>
<?xml version="1.0"?>
<issue>
  <custom_fields type="array">
    <custom_field id="4">
      <value>15</value>
    </custom_field>
  </custom_fields>
</issue>

在每个字段中清除数据库中。

在每个正在工作的情况下更新其他自定义字段(基于文本和数字)。我还检查了文档,没有什么详细说明如何使用REST更新自定义附件的详细信息。

查看代码后非常容易,但是令牌必须属于以前未使用的附件。

<?xml version="1.0"?>
 <issue>
   <custom_fields type="array">
     <custom_field id="4">
       <value>
         <token>15.cb4...</token>
       </value>
     </custom_field>
   </custom_fields>
 </issue>

最新更新