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