{ "name": "UpdateTrelloCardCustomField", "fully_qualified_name": "TrelloApi.UpdateTrelloCardCustomField@2.0.0", "description": "Update or remove a custom field value on a Trello card.\n\nUse this tool to set, update, or remove the value for a custom field on a Trello card. Ideal for managing card data and keeping your board updated with the latest information.", "toolkit": { "name": "ArcadeTrelloApi", "description": null, "version": "2.0.0" }, "input": { "parameters": [ { "name": "card_id", "required": true, "description": "The ID of the Trello card where the custom field value will be set or updated.", "value_schema": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "ID of the card that the Custom Field value should be set/updated for" }, "inferrable": true, "http_endpoint_parameter_name": "idCard" }, { "name": "custom_field_id", "required": true, "description": "The unique identifier for the custom field on the Trello card.", "value_schema": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "ID of the Custom Field on the card." }, "inferrable": true, "http_endpoint_parameter_name": "idCustomField" }, { "name": "custom_field_value", "required": false, "description": "A JSON object containing the value to set, update, or remove for the custom field on the Trello card.", "value_schema": { "val_type": "json", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "" }, "inferrable": true, "http_endpoint_parameter_name": "requestBody" } ] }, "output": { "description": "Response from the API endpoint 'put-cards-idcard-customfield-idcustomfield-item'.", "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/cards/{idCard}/customField/{idCustomField}/item", "http_method": "PUT", "headers": {}, "parameters": [ { "name": "idCard", "tool_parameter_name": "card_id", "description": "ID of the card that the Custom Field value should be set/updated for", "value_schema": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "ID of the card that the Custom Field value should be set/updated for" }, "accepted_as": "path", "required": true, "deprecated": false, "default": null, "documentation_urls": [] }, { "name": "idCustomField", "tool_parameter_name": "custom_field_id", "description": "ID of the Custom Field on the card.", "value_schema": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "ID of the Custom Field on the card." }, "accepted_as": "path", "required": true, "deprecated": false, "default": null, "documentation_urls": [] }, { "name": "requestBody", "tool_parameter_name": "custom_field_value", "description": "", "value_schema": { "val_type": "json", "inner_val_type": null, "enum": null, "properties": null, "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 \"oneOf\": [\n {\n \"type\": \"object\",\n \"properties\": {\n \"value\": {\n \"type\": \"object\",\n \"description\": \"An object containing the key and value to set for the card's Custom Field value. The key used to set the value should match the type of Custom Field defined.\",\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n },\n \"checked\": {\n \"type\": \"boolean\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date-time\",\n \"example\": \"2018-03-13T16:00:00.000Z\"\n },\n \"number\": {\n \"type\": \"number\"\n }\n }\n }\n }\n },\n {\n \"type\": \"object\",\n \"properties\": {\n \"idValue\": {\n \"type\": \"string\",\n \"pattern\": \"^[0-9a-fA-F]{24}$\",\n \"example\": \"5abbe4b7ddc1b351ef961414\"\n }\n }\n }\n ]\n }\n }\n }\n}", "use_request_body_schema_mode": true, "validate_request_body_schema": true } }