Application API
  1. worksheet
Application API
  • Development Guide
  • Filter
  • Filter Demo
  • ErrorCode
  • app
    • Get Application Information
      GET
  • worksheet
    • Create Worksheet
      POST
    • Get worksheet structure information
      POST
    • Get List
      POST
    • Create Row Record
      POST
    • Batch Create Row Records
      POST
    • Get Row Record Details
      GET
    • Get row record details
      POST
    • Update Row Record Details
      POST
    • Batch Update Row Record Details
      POST
    • Delete Row Record
      POST
    • Get associated record
      POST
    • Get Record Share Link
      POST
    • Get total row count of worksheet
      POST
    • Get Row Record Log
      POST
  • Application Role
    • Get Application Role List GET
      GET
    • Create Application Role
      POST
    • Delete Application Role
      POST
    • Add Application Role Member
      POST
    • Remove Application Role Member
      POST
    • Exit application
      POST
    • Get Role Details
      GET
  • Options Set
    • Add Option Set
    • Get Option Set
    • Edit Option Set
    • Delete Option Set
  • Get regional Information
    POST
  1. worksheet

Batch Create Row Records

fromal
https://api.mingdao.com
fromal
https://api.mingdao.com
POST
/v2/open/worksheet/addRows
Create new rows in batches

Request

Body Params application/json
appkey
string 
required
AppKey
sign
string 
required
Signature
worksheetId
string 
required
Worksheet ID
rows
array [object {2}] 
required
controlId
string 
required
Control name
value
string 
required
Control value
controls
array [object {2}] 
required
Control data
controlId
string 
required
Control id
value
string 
required
Control value
triggerWorkflow
boolean 
optional
Whether to trigger the workflow
Default:
true
Example
{
    "appKey": "5004e1f1c103fc82",
    "sign": "MWQzYWJiNTNlYzZmNjZhNTA1NTExMGZhNzEyMjU3ZTMzM2Q2YWFmZWJkMTZjMWM1NTRjNDZiODUwNjc5OTUzNg==",
    "worksheetId": "6773abdab945df4389d21c17",
    "triggerWorkflow": true,
    "rows": [
        [
            {
                "controlId": "60d42c197766e73dc71929a2",
                "value": " First row "
            }
        ],
        [
            {
                "controlId": "60d42c197766e73dc71929a2",
                "value": " The second line "
            }
        ]
    ]
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.mingdao.com/v2/open/worksheet/addRows' \
--header 'Content-Type: application/json' \
--data-raw '{
    "appKey": "5004e1f1c103fc82",
    "sign": "MWQzYWJiNTNlYzZmNjZhNTA1NTExMGZhNzEyMjU3ZTMzM2Q2YWFmZWJkMTZjMWM1NTRjNDZiODUwNjc5OTUzNg==",
    "worksheetId": "6773abdab945df4389d21c17",
    "triggerWorkflow": true,
    "rows": [
        [
            {
                "controlId": "60d42c197766e73dc71929a2",
                "value": " First row "
            }
        ],
        [
            {
                "controlId": "60d42c197766e73dc71929a2",
                "value": " The second line "
            }
        ]
    ]
}'

Responses

🟢200成功
application/json
Body
success
boolean 
required
code
integer 
required
msg
string 
required
data
string 
required
Worksheet ID
Examples
{
    "data": "67eb801bbb2af284541ae54c",
    "success": true,
    "error_code": 1
}
🟠401没有权限
Modified at 2025-04-07 02:42:59
Previous
Create Row Record
Next
Get Row Record Details
Built with