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

Get Record Share Link

fromal
https://api.mingdao.com
fromal
https://api.mingdao.com
POST
/v2/open/worksheet/getRowShareLink
Get record sharing link

Request

Body Params application/json
appKey
string 
AppKey
required
sign
string 
Signature
required
worksheetId
string 
Worksheet ID
required
rowId
string 
Row Record ID
required
visibleFields
array[string]
Visible field ID collection
required
validTime
number 
Unit s, empty means permanent
required
password
string 
Leave it blank to indicate no password is required
required
Example
{
    "appKey": "b09410353a7d607e",
    "sign": "MDg2MzlmZGFhMTFiYjIwODE0MDdkMGNlZmU4YWM2ZmU5NjFkZWUzYWI5NTM5MzNiZDEzNjUxZTA4M2UyMDI3OQ==",
    "worksheetId": "67eb8326143184e59c37575a",
    "rowId": "099236ee-01df-458b-9c62-125289fd3de7",
    "visibleFields": [],
    "validTime": "",
    "password": ""
}

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/getRowShareLink' \
--header 'Content-Type: application/json' \
--data-raw '{
    "appKey": "b09410353a7d607e",
    "sign": "MDg2MzlmZGFhMTFiYjIwODE0MDdkMGNlZmU4YWM2ZmU5NjFkZWUzYWI5NTM5MzNiZDEzNjUxZTA4M2UyMDI3OQ==",
    "worksheetId": "67eb8326143184e59c37575a",
    "rowId": "099236ee-01df-458b-9c62-125289fd3de7",
    "visibleFields": [],
    "validTime": "",
    "password": ""
}'

Responses

🟢200成功
application/json
Body
data
string 
required
success
boolean 
required
error_code
integer 
required
Example
{
    "data": "https://www.mingdao.com/public/record/67eba5bc563eba0974c19583",
    "success": true,
    "error_code": 1
}
🟠404记录不存在
Modified at 2025-04-07 02:44:11
Previous
Get associated record
Next
Get total row count of worksheet
Built with