-
Notifications
You must be signed in to change notification settings - Fork 17
Description
I've put the ost_wbs folder into the "upload" folder as that appears to be where OSTicket pulls from. Because of this I have to use hosturl/ost_wbs instead of what it says in the document as hosturl/upload gives me a 404.
That being said, it seems to work... kind of. If I don't have an API key in the header it tells me it's an "Incorrect API Format", but when I have the API key and try to run it it gives me the 500 server error and the body is blank, nothing returned at all.
I am attempting to get a specific user using POSTMAN. I copied the code from the documentation site into the Body tab, using "raw" and "json"
{
"query":"user",
"condition":"specific",
"sort":"email",
"parameters":{
"email":"dang@norco-inc.com"
}
}
and in the headers tab I put "apikey" with a value of the API key generated with my computer's IP address.
Any help would be appreciated.