Added New Agent Local Web #
We have added a new feature called New Agent Local Web to this administration application. You can perform the following tasks directly on the agent server:
- The Skyvva Tool is used to encrypt and decrypt passwords, whether you need it for the New Agent or any other purpose.
- Register a new Salesforce Org. You register a new Org when you want to connect an additional Org with the agent.
- View a list of connections and take some action, such as subscribe, unsubscribe, or resubscribe
- View system information such as agent version, database, and OS information
Note: You can access it as an example using the URL with the specified port: http://localhost:9055/
Added New /api/query API on New Agent #
We have introduced a new ‘/api/query’ API in the New Agent for querying the database directly from the Agent Database Adapter. For instance, you can use ‘https://hostname:port/api/query’ to retrieve data from the Agent Database. The query should be structured as follows:
{
“adapterId”: “xxxxxxxxxxxxxxx”,
“sql”: “select id, clo1 from table”
}
Added Multiple Authentication Types for New Agent #
In the previous version, the New Agent only supported Basic Authentication. Now, we have added JWT and OAuth2, which include two grant types: Password Credentials and Client Credentials, along with API Key and Certificate-based authentication.