Hello everyone! Just started a job that uses SysAid for our Help Desk and currently, I’m in the process of backdating and closing out a ton of requests by assigning categories, inputting solutions, etc. Just wondering if anyone had success automating this process on Python (or something similar) using SysAids REST API and if so, would be willing to provide tips or pointers on how to get started. Thank you!
Automation for Specific Fields
Best answer by AlexanderChr
Hi
There are a lot of commands that can be used with REST API.
If you have the application configured, you can check our guide here.
You can update fields using a simple command line - as an example
Sample JSON input for/sr/273, update the status, add a note, change assigned to user & modify time
{
“id”:”273”,
“info”:
[{“key”:”update_time”, ”value”:1391756438000},
{“key”:”status”, ”value”:2},
{“key”:”notes”,”value”:[
{“userName”:”sysaid”,”createDate”:1391756438000,”text”:”Note 123”}
]},
{“responsibility”:66}]
}
All the examples can be found here.
If you still need assistance, do let me know what you’re trying to achieve and I can help.
Have a nice day!
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.