I am attempting to submit tickets via a url, however with no user interaction. I am aware that you can pre-fill out all of the fields however users still need to input the spam prevention and click on submit.
Any Ideas?
I'd like to not write directly to the database.
Thanks,
Tom
Submit a ticket via URL
Moderator: mkoch227
Re: Submit a ticket via URL
Unfortunately there is no api currently available that would allow this.
The only work-around that would work out-of-the-box I see is if you send ticket details in an email to Hesk and use email to ticket (piping or POP3/IMAP fetching) to turn that email into a ticket.
Or you could hire someone to modify the submit_ticket.php file for you to allow direct posts without any spam checks etc.
The only work-around that would work out-of-the-box I see is if you send ticket details in an email to Hesk and use email to ticket (piping or POP3/IMAP fetching) to turn that email into a ticket.
Or you could hire someone to modify the submit_ticket.php file for you to allow direct posts without any spam checks etc.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
-
- Posts: 17
- Joined: Mon Oct 30, 2017 8:35 pm
Re: Submit a ticket via URL
Klemen,Klemen wrote: Tue Oct 31, 2017 7:05 am Unfortunately there is no api currently available that would allow this.
The only work-around that would work out-of-the-box I see is if you send ticket details in an email to Hesk and use email to ticket (piping or POP3/IMAP fetching) to turn that email into a ticket.
Or you could hire someone to modify the submit_ticket.php file for you to allow direct posts without any spam checks etc.
Thanks for your response, I never thought about the e-mail option to accomplish the same thing. I will also take a look at the submit_ticket.php and see what I can come up with.
Is an API planned for the future? Do you know if sysaid has an API for this type of functionality?
Thanks,
Tom
Re: Submit a ticket via URL
An API is planned, but honestly not a priority at the moment.
SysAid does offer one, for more information regarding SysAid please contact info@sysaid.com
There is also an unofficial mod collection called Mods for Hesk by Mike which I believe does have existing API support.
SysAid does offer one, for more information regarding SysAid please contact info@sysaid.com
There is also an unofficial mod collection called Mods for Hesk by Mike which I believe does have existing API support.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Re: Submit a ticket via URL
Mods for HESK 3.1.1 does indeed have a REST API (documentation can be found at https://mods-for-hesk.readme.io/reference). However, it is currently a beta, and some issues may be present (such as this issue reported here along with a solution: viewtopic.php?f=19&p=25824#p25750)Klemen wrote: Wed Nov 01, 2017 8:06 am There is also an unofficial mod collection called Mods for Hesk by Mike which I believe does have existing API support.
Mike, Lead Developer of
HESK: A surprisingly simple, user-friendly and FREE help desk software with integrated knowledgebase.
-
- Posts: 17
- Joined: Mon Oct 30, 2017 8:35 pm
Re: Submit a ticket via URL
Mike,mkoch227 wrote: Wed Nov 01, 2017 12:30 pmMods for HESK 3.1.1 does indeed have a REST API (documentation can be found at https://mods-for-hesk.readme.io/reference). However, it is currently a beta, and some issues may be present (such as this issue reported here along with a solution: viewtopic.php?f=19&p=25824#p25750)Klemen wrote: Wed Nov 01, 2017 8:06 am There is also an unofficial mod collection called Mods for Hesk by Mike which I believe does have existing API support.
This may be exactly what I am looking for; I'd be extracting the API which shouldn't be too hard to do.
Thanks,
Tom