# Upload Logs

To enhance customer service efficiency and assist in resolving intermittent bugs and other issues, we provide you with the ability to upload logs, offering additional context for troubleshooting.

You can implement this feature by either calling an API or registering event callbacks.

# Event

You can configure log upload steps in your RPA robot. AIHelp triggers the upload event automatically when executing these steps.

You can choose to subscribe for this event and handle the upload logic by your side, and then pass the results to AIHelp. We will display the content you passed in ticket notes.

AIHelpSupport.registerAsyncEventListener("logUpload", function(jsonData, ack) {
  ack("{'content':'your async logPath'}")
});

For compatibility purposes, the data passed back to AIHelp should be in JSON format. The log information should be stored under the key content.

# Others

# API

We will upload the specified logs to customer service. The saved logs can be downloaded from the device information page in the customer service interface.

# Event

The content you return will be displayed in the customer service notes, providing additional context for troubleshooting.

# URL

This feature is not supported via URL schemes.

Last Updated: 7/26/2024, 6:29:04 AM