作为复合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'表示为对象数组,我无法将单个值映射到对象上的数组。
有什么建议吗?