Application API
  1. Options Set
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
      POST
    • Get Option Set
      POST
    • Edit Option Set
      POST
    • Delete Option Set
      DELETE
  • Get regional Information
    POST
  1. Options Set

Get Option Set

fromal
https://api.mingdao.com
fromal
https://api.mingdao.com
POST
/v1/open/app/getOptionSets

Request

Body Params application/json
appKey
string 
required
AppKey
sign
string 
required
sign
Example
{
    "appKey": "5004e1f1c103fc82",
    "sign": "MWQzYWJiNTNlYzZmNjZhNTA1NTExMGZhNzEyMjU3ZTMzM2Q2YWFmZWJkMTZjMWM1NTRjNDZiODUwNjc5OTUzNg=="
}

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/v1/open/app/getOptionSets' \
--header 'Content-Type: application/json' \
--data-raw '{
    "appKey": "5004e1f1c103fc82",
    "sign": "MWQzYWJiNTNlYzZmNjZhNTA1NTExMGZhNzEyMjU3ZTMzM2Q2YWFmZWJkMTZjMWM1NTRjNDZiODUwNjc5OTUzNg=="
}'

Responses

🟢200成功
application/json
Body
code
integer 
required
data
array [object {9}] 
required
appId
string 
Application ID
optional
projectId
string 
Organization ID
optional
collectionId
string 
Option Set ID
optional
name
string 
Option set name
optional
accountId
string 
accountId
optional
worksheetIds
array[string]
optional
options
array [object {7}] 
optional
colorful
boolean 
optional
enableScore
boolean 
optional
Example
{
    "code": 1,
    "data": [
        {
            "appId": "84ab0007-53be-42d0-abb1-ca48d5914823",
            "projectId": "28447959-cf7f-4ae9-9074-8977ce48e2a0",
            "collectionId": "052ca8d0-9a3e-43e5-ac6f-9158256e3345",
            "name": " Order Status ",
            "accountId": "e2453de8-1a6a-4d4f-ba36-87fdff880a20",
            "worksheetIds": [],
            "options": [
                {
                    "key": "54cb74a9-022c-484a-a7c2-68a67ec6ed92",
                    "value": " To be paid ",
                    "index": 1,
                    "isDeleted": false,
                    "color": "#C9E6FC",
                    "score": 0,
                    "hide": false
                },
                {
                    "key": "8798bc55-51e7-48c8-8869-e53496263ebd",
                    "value": " Cancelled ",
                    "index": 2,
                    "isDeleted": false,
                    "color": "#C3F2F2",
                    "score": 0,
                    "hide": false
                },
                {
                    "key": "14b812fa-4701-455f-8589-9f96e90f1e94",
                    "value": " Completed ",
                    "index": 3,
                    "isDeleted": false,
                    "color": "#00C345",
                    "score": 0,
                    "hide": false
                }
            ],
            "colorful": false,
            "enableScore": false
        }
    ]
}
🟠401没有权限
🟠404记录不存在
Modified at 2025-04-07 02:45:19
Previous
Add Option Set
Next
Edit Option Set
Built with