Add new line records in batches
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-09-05 07:03:09