TestDataServiceApi
Manage and test API requests in Alibaba Cloud DataWorks by configuring Body, Path, Query, and Header parameters with this DataWorks MCP Server tool.
Instructions
测试数据服务API
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ApiId | No | APIId | |
BodyContent | No | 请求body数据 | |
BodyParams | No | 放在请求Body的参数信息 | |
HeadParams | No | 放在Header里面的请求参数 | |
PathParams | No | 放在Path里面的请求参数 | |
QueryParam | No | 放在Query里面的请求参数 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ApiId": {
"description": "APIId"
},
"BodyContent": {
"description": "请求body数据",
"type": "string"
},
"BodyParams": {
"description": "放在请求Body的参数信息",
"items": {
"additionalProperties": false,
"properties": {
"ParamKey": {
"description": "参数名称",
"type": "string"
},
"ParamValue": {
"description": "参数值",
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"HeadParams": {
"description": "放在Header里面的请求参数",
"items": {
"additionalProperties": false,
"properties": {
"ParamKey": {
"description": "参数名称",
"type": "string"
},
"ParamValue": {
"description": "参数值",
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"PathParams": {
"description": "放在Path里面的请求参数",
"items": {
"additionalProperties": false,
"properties": {
"ParamKey": {
"description": "参数名称",
"type": "string"
},
"ParamValue": {
"description": "参数值",
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"QueryParam": {
"description": "放在Query里面的请求参数",
"items": {
"additionalProperties": false,
"properties": {
"ParamKey": {
"description": "参数名称",
"type": "string"
},
"ParamValue": {
"description": "参数值",
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}