Application API
  1. Options Set
Application API
  • V3 (AI-friendly-beta)
    • Overview
    • Field Type Comparison Table
    • Guidelines for Using Filters
    • Error Code
    • application
      • Get application information
    • worksheet
      • Get worksheet structure information
      • Edit the worksheet
      • Delete worksheets
      • Create worksheet
    • worksheet Row Records
      • Get a list of line records
      • Get line record details
      • Update line records
      • Delete line records
      • Get relation records
      • Create a new row record
      • Add new line records in batches
      • Batch update line records
      • Batch delete row records
      • Obtain line record perspective data
      • Get record sharing links
      • Get a row record log
      • Get line record discussion
    • option set
      • Get a list of option sets
      • Create an option set
      • Edit option set
      • Delete option set
    • workflow
      • Get a list of processes
      • Get process details
      • Trigger process
    • role
      • Get a list of roles
      • create role
      • Get role details
      • remove roles
      • Add role members
      • Remove role members
      • Members withdraw from all roles
    • public query
      • find members
      • Find departments
      • Get regional information
  • V2
    • Development Guide
    • ErrorCode
    • Filter Demo
    • Filter
    • Options Set
      • Add Option Set
        POST
      • Get Option Set
        POST
      • Edit Option Set
        POST
      • Delete Option Set
        DELETE
    • Application Role
      • Get Application Role List GET
      • Create Application Role
      • Delete Application Role
      • Add Application Role Member
      • Remove Application Role Member
      • Exit application
      • Get Role Details
    • worksheet
      • Create Worksheet
      • Get worksheet structure information
      • Get List
      • Create Row Record
      • Batch Create Row Records
      • Get Row Record Details
      • Get row record details
      • Update Row Record Details
      • Batch Update Row Record Details
      • Delete Row Record
      • Get associated record
      • Get Record Share Link
      • Get total row count of worksheet
      • Get Row Record Log
    • app
      • Get Application Information
    • Public Inquiries
      • Get regional Information
    • Get Row Record Discussions
      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

Example
{
    "appKey": "5004e1f1c103fc82",
    "sign": "MWQzYWJiNTNlYzZmNjZhNTA1NTExMGZhNzEyMjU3ZTMzM2Q2YWFmZWJkMTZjMWM1NTRjNDZiODUwNjc5OTUzNg=="
}

Request Code 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

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