如何在IBM API管理中将值数组映射到对象数组?

时间:2016-01-15 09:15:01

标签: ibm-cloud api-management

作为复合api的一部分,我需要在IBM API管理中进行以下映射

申请JSON

{
   "groupName": "string",
   "notes": "string",
   "Goal_Description": "string",
   "Goal_Date": "string",
   "Goal_Target": "string",
   "Goal_Contribution": "string"
}

调用API时,需要将其映射到

{
   "group": {
      "groupName": "string",
      "notes": "string"
   },
   "customInformation": [
      {
         "value": "NA",
         "customFieldID": "Goal_Description"
      },
      {
         "value": "NA",
         "customFieldID": "Goal_Date"
      },
      {
         "value": "NA",
         "customFieldID": "Goal_Target"
      },
      {
         "value": "NA",
         "customFieldID": "Goal_Contribution"
      }
   ]
}

尝试在API管理门户中进行映射时,'customInformation'表示为对象数组,我无法将单个值映射到对象上的数组。

Attributes mapping

有什么建议吗?

0 个答案:

没有答案