get_form_data
Retrieve a specific data entry from a JianDaoYun form using app ID, form ID, and data entry ID for accurate form data management and integration.
Instructions
Get a specific data entry from a JianDaoYun form
Input Schema
Name | Required | Description | Default |
---|---|---|---|
appId | Yes | The JianDaoYun application ID | |
appKey | No | The JianDaoYun application key (API key) (optional, will use JIANDAOYUN_APP_KEY from environment if not provided) | |
dataId | Yes | The data entry ID | |
formId | Yes | The form ID (can be form ID or app ID) |
Input Schema (JSON Schema)
{
"properties": {
"appId": {
"description": "The JianDaoYun application ID",
"type": "string"
},
"appKey": {
"description": "The JianDaoYun application key (API key) (optional, will use JIANDAOYUN_APP_KEY from environment if not provided)",
"type": "string"
},
"dataId": {
"description": "The data entry ID",
"type": "string"
},
"formId": {
"description": "The form ID (can be form ID or app ID)",
"type": "string"
}
},
"required": [
"appId",
"formId",
"dataId"
],
"type": "object"
}