Actions
Actions are structures that can send REST requests. Once the AI receives the necessary explanations, it uses these actions to perform operations.
🏷️ General Information
| Field | Description |
|---|---|
| Name | The name assigned to the action. |
| Description | Explains when the action should be used. This helps the AI decide under what conditions to trigger the action. |
⚙️ HTTP Details
| Field | Description |
|---|---|
| Methods | Specifies the REST methods such as GET, POST, PUT, and DELETE. |
| URL | The URL endpoint where the request will be sent. |
🧾 Headers
Multiple headers can be defined. Contains the fixed values that should be included in the header of REST requests.
🔢 Parameters
| Field | Description |
|---|---|
| Name | The name of the parameter. |
| Description | Explains how the parameter should be used. |
| TestValue | Sample value used for testing HTTP requests. (The AI does not use this field.) |
| Required | If marked as required, the AI will ask the end user to provide this value. |
| In URL | Determines whether the value is sent as a query parameter (in the URL) or inside the JSON body. |
🔐 Authorization
Contains the authorization configuration for the REST request.
Authorization Types
Bearer Token
- Bearer Token: Contains the Bearer Token value.
Basic
- Username: The username required for the request.
- Password: The password required for the request.