update_external_market_config
Modify and synchronize external market data API configurations, including URL, API key, and symbol mappings, for accurate and up-to-date market data integration.
Instructions
Update the configuration for external market data API
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiKey | No | API key for external market data (if required) | |
apiUrl | No | API URL for external market data | |
symbols | No | Symbol mappings for the external API |
Input Schema (JSON Schema)
{
"properties": {
"apiKey": {
"description": "API key for external market data (if required)",
"type": "string"
},
"apiUrl": {
"description": "API URL for external market data",
"type": "string"
},
"symbols": {
"description": "Symbol mappings for the external API",
"properties": {
"EDU": {
"description": "Symbol for EDU token on the external API",
"type": "string"
},
"USD": {
"description": "Symbol for USD on the external API",
"type": "string"
}
},
"type": "object"
}
},
"required": [],
"type": "object"
}