X-Token: ********************
{
"forms": [
{
"prop": "formProperty1",
"value": "formValue1"
},
{
"prop": "formProperty2",
"value": "formValue2"
}
// 可以继续添加更多表单对象...
],
"tables": [
{
"tableId": "table1",
"rows": [
{
"column1": "row1Value1",
"column2": "row1Value2"
},
{
"column1": "row2Value1",
"column2": "row2Value2"
}
// 可以继续添加更多行数据...
]
},
{
"tableId": "table2",
"rows": [
{
"columnA": "rowAValue1",
"columnB": "rowAValue2"
}
// 添加更多行数据...
]
}
// 可以继续添加更多表格对象...
]
}
curl --location --request PUT '/catalog/scenario///temporary' \
--header 'X-Requested-Session;' \
--header 'Content-Type: application/json' \
--data-raw '{
"forms": [
{
"prop": "formProperty1",
"value": "formValue1"
},
{
"prop": "formProperty2",
"value": "formValue2"
}
// 可以继续添加更多表单对象...
],
"tables": [
{
"tableId": "table1",
"rows": [
{
"column1": "row1Value1",
"column2": "row1Value2"
},
{
"column1": "row2Value1",
"column2": "row2Value2"
}
// 可以继续添加更多行数据...
]
},
{
"tableId": "table2",
"rows": [
{
"columnA": "rowAValue1",
"columnB": "rowAValue2"
}
// 添加更多行数据...
]
}
// 可以继续添加更多表格对象...
]
}'
{}