Skip to main content

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

FieldDescription
NameThe name assigned to the action.
DescriptionExplains when the action should be used. This helps the AI decide under what conditions to trigger the action.

⚙️ HTTP Details

FieldDescription
MethodsSpecifies the REST methods such as GET, POST, PUT, and DELETE.
URLThe 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

FieldDescription
NameThe name of the parameter.
DescriptionExplains how the parameter should be used.
TestValueSample value used for testing HTTP requests. (The AI does not use this field.)
RequiredIf marked as required, the AI will ask the end user to provide this value.
In URLDetermines 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.