
Configuration | Description |
Key location | Support selecting "header" or "query" for configuration to fill in the ApiKey position. |
Key Parameter Name | ApiKey Name. |
key value | specific value of ApiKey. |

Configuration | Description |
GET | Used to obtain data from the server, usually used for query operations. Use cases: ● Retrieve static resources such as web pages, images, and API data. ● Search engine queries. ● Simple data transfer without sensitive information. |
POST | Used to submit data to a server, usually used for creating or updating resources. Use cases: ● Submit form data, such as user registration and sign-in. ● Upload files or large data. ● Perform non-query operations. |
DELETE | DELETE: Deleting the specified resource from the server, usually used for data removal or operation cancellation. Use cases: ● Delete user accounts, articles, comments, and other dynamic resources. ● Cancel submitted orders or reservations. ● Clean up temporary files or cached data. |
openapi: "3.0.0"info:title: "Test API"version: "1.0.0"description: "Fill in the plugin description herein"servers:- url: "https://example.com/api"description: "Fill in the plugin description herein"paths:"/weatherInfo":get:summary: "API name"description: "Fill in the API description of the plug-in herein"operationId: "getWeatherInfo"parameters:- name: "city"in: "query"description: "parameter description"required: trueschema:type: "string"responses:"200":description: "successful response"content:application/json:schema:type: "object"properties:status:type: "integer"description: "return status"enum: [0, 1]"400":description: "incorrect request""401":description: "unauthorized""500":description: "internal server error"
Configuration | Description |
Variable Name | The variable name can only contain letters, digits, or underscores, must start with a letter or underscore, and is mandatory. |
Description | Description of this variable. Optional. |
Data source | The data source of this variable supports two options: "refer" and "input". "Refer" allows selecting output variables from all preceding nodes, while "input" supports manually filling in a fixed value. |
Type | The data type of this variable cannot be selected and defaults to the variable type of "refer" or the string type of "input". |

Configuration | Description |
Max Retry Attempts | The maximum number of retries when a node runs abnormally. If retries exceed the set number of times, the node is considered a call failed and returns the "Exception Output Variable" content, defaulting to 3 times. |
Retry Interval | Interval between each rerun, default is 1 second. |
Exception Output Variable | The output variable returned when retries exceed the maximum number. |


openapi: "3.0.0"info:title: "weather inquiry"version: "1.0.0"description: "Plug-in for weather inquiry"servers:- url: "https://example.example/api"description: "Query real-time weather for a specific city"paths:"/weatherInfo":get:summary: "Plug-in for querying real-time weather in a specific city"operationId: "getWeatherInfoId"description: "Query real-time weather for a specific city"parameters:- name: "city"in: "query"description: "City to be queried for weather"required: trueschema:type: "string"responses:"200":description: "successful response"content:application/json:schema:type: "object"properties:weather:type: "string"description: "Weather description"status:type: "integer"description: "API call status""400":description: "incorrect request""401":description: "unauthorized""500":description: "internal server error"

openapi: "3.0.0"info:title: "Customer Order Query"version: "1.0.0"description: "Query ALL orders by Customer ID"servers:- url: "https://example.example/api"description: "Query order information for specific customers"paths:/orderList:post:summary: "Query order list for specific customers"operationId: "getOrderList"description: "Query ALL orders by Customer ID"requestBody:required: truedescription: "The request body contains the customer ID"content:application/json:schema:type: objectproperties:customerId:type: integerdescription: "Customer ID, required"customerName:type: stringdescription: "Customer name (optional)"customerEmail:type: stringdescription: "Customer mailbox (optional)"required:- customerIdresponses:"200":description: "query succeeded"content:application/json:schema:type: objectproperties:orderList:type: arraydescription: "Order list"items:type: objectproperties:orderId:type: integerdescription: "Order ID"status:type: stringdescription: "Order status"amount:type: numberdescription: "order amount"status:type: integerdescription: "API call status"enum: [0, 1]"400":description: "incorrect request""401":description: "unauthorized""500":description: "internal server error"
Feedback