Application API
  1. workflow
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
      • Get process details
        GET
      • Trigger process
        POST
    • 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
      • Get Option Set
      • Edit Option Set
      • Delete Option Set
    • 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. workflow

Get process details

Testing
fromal
https://api.mingdao.com
fromal
https://api.mingdao.com
GET
/v3/app/workflow/processes/{process_id}
Obtain process details, including process request parameters and response parameters

Request

Path Params

Header Params

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 GET 'https://api.mingdao.com/v3/app/workflow/processes/' \
--header 'HAP-Appkey: {{appkey}}' \
--header 'HAP-Sign: {{sign}}'

Responses

🟢200OK
application/json
Body

Example
{
    "data": {
        "id": "681b8934ec9191462c08417a",
        "name": "New clues",
        "description": "Description of new clues",
        "inputParameters": [
            {
                "id": "681b8190ec9191462c08283b",
                "name": "name",
                "alias": "",
                "description": "",
                "type": 2,
                "required": false
            },
            {
                "id": "681b8190ec9191462c08111",
                "name": "channels",
                "description": "",
                "alias": "",
                "type": 9,
                "options": [
                    {
                        "key": "1",
                        "value": "a"
                    },
                    {
                        "key": "2",
                        "value": "b"
                    }
                ],
                "required": false
            }
        ],
        "outputParameters": [
            {
                "id": "681b8190ec9191462c082222",
                "name": "id",
                "alias": "",
                "description": "",
                "type": 2
            }
        ]
    },
    "success": true
}
Modified at 2025-08-25 06:56:35
Previous
Get a list of processes
Next
Trigger process
Built with