{ "name": "UpdateCustomFieldDefinition", "fully_qualified_name": "TrelloApi.UpdateCustomFieldDefinition@2.0.0", "description": "Update a Custom Field definition in Trello.\n\nUse this tool to update an existing Custom Field definition on Trello by providing the necessary details.", "toolkit": { "name": "ArcadeTrelloApi", "description": null, "version": "2.0.0" }, "input": { "parameters": [ { "name": "custom_field_id", "required": true, "description": "The unique identifier for the Custom Field to update in Trello.", "value_schema": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "ID of the Custom Field." }, "inferrable": true, "http_endpoint_parameter_name": "id" }, { "name": "custom_field_details", "required": false, "description": "JSON containing details for updating the custom field, including 'name', 'pos', and 'display/cardFront'.", "value_schema": { "val_type": "json", "inner_val_type": null, "enum": null, "properties": { "name": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "The name of the Custom Field" }, "pos": { "val_type": "json", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": null }, "display/cardFront": { "val_type": "boolean", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Whether to display this custom field on the front of cards" } }, "inner_properties": null, "description": "" }, "inferrable": true, "http_endpoint_parameter_name": "requestBody" } ] }, "output": { "description": "Response from the API endpoint 'put-customfields-id'.", "available_modes": [ "value", "error", "null" ], "value_schema": { "val_type": "json", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": null } }, "requirements": { "authorization": null, "secrets": [ { "key": "TRELLO_API_KEY" }, { "key": "TRELLO_TOKEN" } ], "metadata": null }, "deprecation_message": null, "metadata": { "object_type": "api_wrapper_tool", "version": "1.1.0", "description": "Tools that enable LLMs to interact directly with the trello API." }, "http_endpoint": { "metadata": { "object_type": "http_endpoint", "version": "1.2.0", "description": "" }, "url": "https://api.trello.com/1/customFields/{id}", "http_method": "PUT", "headers": {}, "parameters": [ { "name": "id", "tool_parameter_name": "custom_field_id", "description": "ID of the Custom Field.", "value_schema": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "ID of the Custom Field." }, "accepted_as": "path", "required": true, "deprecated": false, "default": null, "documentation_urls": [] }, { "name": "requestBody", "tool_parameter_name": "custom_field_details", "description": "", "value_schema": { "val_type": "json", "inner_val_type": null, "enum": null, "properties": { "name": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "The name of the Custom Field" }, "pos": { "val_type": "json", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": null }, "display/cardFront": { "val_type": "boolean", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "Whether to display this custom field on the front of cards" } }, "inner_properties": null, "description": "" }, "accepted_as": "body", "required": false, "deprecated": false, "default": null, "documentation_urls": [] } ], "documentation_urls": [], "secrets": [ { "arcade_key": "TRELLO_API_KEY", "parameter_name": "key", "accepted_as": "query", "formatted_value": null, "description": "", "is_auth_token": false }, { "arcade_key": "TRELLO_TOKEN", "parameter_name": "token", "accepted_as": "query", "formatted_value": null, "description": "", "is_auth_token": false } ], "request_body_spec": "{\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"type\": \"object\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\",\n \"description\": \"The name of the Custom Field\"\n },\n \"pos\": {\n \"oneOf\": [\n {\n \"type\": \"string\",\n \"enum\": [\n \"top\",\n \"bottom\"\n ]\n },\n {\n \"type\": \"number\",\n \"format\": \"float\",\n \"example\": 1293.5\n }\n ]\n },\n \"display/cardFront\": {\n \"type\": \"boolean\",\n \"description\": \"Whether to display this custom field on the front of cards\"\n }\n }\n }\n }\n }\n}", "use_request_body_schema_mode": true, "validate_request_body_schema": true } }