{ "name": "CreateTrelloCustomField", "fully_qualified_name": "TrelloApi.CreateTrelloCustomField@2.0.0", "description": "Create a new custom field on a Trello board.\n\nThis tool creates a new custom field on a specified Trello board. Call this tool when you need to add a custom field to organize or manage information on your Trello boards.", "toolkit": { "name": "ArcadeTrelloApi", "description": null, "version": "2.0.0" }, "input": { "parameters": [ { "name": "custom_field_details", "required": false, "description": "A JSON object containing details for the new custom field, such as `idModel`, `modelType`, `name`, `type`, `options`, `pos`, and `display_cardFront`. `modelType` must be 'board'.", "value_schema": { "val_type": "json", "inner_val_type": null, "enum": null, "properties": { "idModel": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": null }, "modelType": { "val_type": "string", "inner_val_type": null, "enum": [ "board" ], "properties": null, "inner_properties": null, "description": "The type of model that the Custom Field is being defined on. This should always be `board`." }, "name": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "The name of the Custom Field" }, "type": { "val_type": "string", "inner_val_type": null, "enum": [ "checkbox", "list", "number", "text", "date" ], "properties": null, "inner_properties": null, "description": "The type of Custom Field to create." }, "options": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "If the type is `checkbox` " }, "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 this Custom Field should be shown on the front of Cards" } }, "inner_properties": null, "description": "" }, "inferrable": true, "http_endpoint_parameter_name": "requestBody" } ] }, "output": { "description": "Response from the API endpoint 'post-customfields'.", "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", "http_method": "POST", "headers": {}, "parameters": [ { "name": "requestBody", "tool_parameter_name": "custom_field_details", "description": "", "value_schema": { "val_type": "json", "inner_val_type": null, "enum": null, "properties": { "idModel": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": null }, "modelType": { "val_type": "string", "inner_val_type": null, "enum": [ "board" ], "properties": null, "inner_properties": null, "description": "The type of model that the Custom Field is being defined on. This should always be `board`." }, "name": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "The name of the Custom Field" }, "type": { "val_type": "string", "inner_val_type": null, "enum": [ "checkbox", "list", "number", "text", "date" ], "properties": null, "inner_properties": null, "description": "The type of Custom Field to create." }, "options": { "val_type": "string", "inner_val_type": null, "enum": null, "properties": null, "inner_properties": null, "description": "If the type is `checkbox` " }, "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 this Custom Field should be shown 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 \"required\": [\n \"idModel\",\n \"modelType\",\n \"name\",\n \"type\",\n \"pos\"\n ],\n \"properties\": {\n \"idModel\": {\n \"type\": \"string\",\n \"pattern\": \"^[0-9a-fA-F]{24}$\",\n \"example\": \"5abbe4b7ddc1b351ef961414\"\n },\n \"modelType\": {\n \"enum\": [\n \"board\"\n ],\n \"type\": \"string\",\n \"description\": \"The type of model that the Custom Field is being defined on. This should always be `board`.\"\n },\n \"name\": {\n \"type\": \"string\",\n \"description\": \"The name of the Custom Field\"\n },\n \"type\": {\n \"enum\": [\n \"checkbox\",\n \"list\",\n \"number\",\n \"text\",\n \"date\"\n ],\n \"type\": \"string\",\n \"description\": \"The type of Custom Field to create.\"\n },\n \"options\": {\n \"type\": \"string\",\n \"description\": \"If the type is `checkbox` \"\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 this Custom Field should be shown on the front of Cards\",\n \"default\": true\n }\n }\n }\n }\n }\n}", "use_request_body_schema_mode": true, "validate_request_body_schema": true } }