Add new line records in batches
Testing
Request
Body Params application/json
{
"rows": [
{
"fields": [
{
"id": "",
"value": ""
},
{
"id": "",
"value": ""
}
]
}
],
"triggerWorkflow": true
}
Request Code Samples
curl --location --request POST 'https://api.mingdao.com/v3/app/worksheets//rows/batch' \
--header 'HAP-Appkey: {{appkey}}' \
--header 'HAP-Sign: {{sign}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"rows": [
{
"fields": [
{
"id": "",
"value": ""
},
{
"id": "",
"value": ""
}
]
}
],
"triggerWorkflow": true
}'
Responses
application/json {
"data": {
"rows": []
},
"success": true
}
Modified at 2025-08-21 09:35:00