cldkctl_org_edit
Update organization data using the MCP cldkctl Server by specifying the organization ID and new data to modify.
Instructions
Call the cldkctl_org_edit endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
org_data | Yes | Organization data to update | |
organization_id | Yes | Organization ID |
Input Schema (JSON Schema)
{
"properties": {
"org_data": {
"description": "Organization data to update",
"type": "object"
},
"organization_id": {
"description": "Organization ID",
"type": "string"
}
},
"required": [
"organization_id",
"org_data"
],
"type": "object"
}