Page 1 of 1

Webhooks working from server, but not from terminals

PostPosted: Wed Jun 24, 2026 10:52 am
by JuiceyBrucey
7.2.1.0
SR 16
I am updating inventory on JIWA directly on the server, and webhooks are coming through no problem. But when office staff update inventory from one of their computers, the webhook is not sent.
I have checked all other computers and they are all running:
7.2.1.0
SR 16
All of them can access: http://10.0.0.110:808/ and the metadata comes up no problem. (Not sure if that is relevant)
JIWA sends the webhooks to the website webhook page and records the webhook content immediately. So if the webhook is sent, I will be able to see it in the website admin immediately. But they are only being sent when I am logged into the server and updating inventory from there.

Not sure why some terminals are working, and others are not.
Any suggestions?

Re: Webhooks working from server, but not from terminals

PostPosted: Wed Jun 24, 2026 10:54 am
by Scott.Pearce
What is the value in System Settings->System Configuration->REST API->HostURL? This should be a value that all clients can reach.

Re: Webhooks working from server, but not from terminals

PostPosted: Wed Jun 24, 2026 10:55 am
by Mike.Sheen
What you are describing indicates that the clients cannot reach the configured WebhooksHostURL in your System Settings -> REST API tab.

Make sure you've read the Webhooks docs page.

Re: Webhooks working from server, but not from terminals

PostPosted: Wed Jun 24, 2026 11:36 am
by JuiceyBrucey
thank you for the replies.
The WebhooksHostURL has been set to http://10.0.0.110:808/.
I dont know why as it does not point to my API or website at all.
This works on some computers and not others.
Is that the issue?

Re: Webhooks working from server, but not from terminals

PostPosted: Wed Jun 24, 2026 11:38 am
by Mike.Sheen
JuiceyBrucey wrote:The WebhooksHostURL has been set to http://10.0.0.110:808/.
I dont know why as it does not point to my API or website at all.
This works on some computers and not others.
Is that the issue?


Have you verified that http://10.0.0.110:808/ is reachable from the problem machines? Verify by opening a browser on the problem machines and visiting http://10.0.0.110:808/

Re: Webhooks working from server, but not from terminals

PostPosted: Wed Jun 24, 2026 11:40 am
by JuiceyBrucey
Yes all can reach http://10.0.0.110:808/
Cheers

Re: Webhooks working from server, but not from terminals

PostPosted: Wed Jun 24, 2026 11:44 am
by Mike.Sheen
JuiceyBrucey wrote:Yes all can reach http://10.0.0.110:808/
Cheers


Ok, so look in the table SY_WebHookMessage - if clients cannot reach the Jiwa API, they will insert directly into the table SY_WebHookMessage with Status of 0 - are you seeing entries like that?

If so, then join those to the SY_WebhookMessageResponse table - this should show a HTTPCode and Message.

Re: Webhooks working from server, but not from terminals

PostPosted: Wed Jun 24, 2026 12:09 pm
by JuiceyBrucey
In the SY_WebHookMessage table, all of the status values are either 1 or 2.
When joining tables, there are some that have a status of 404 and a Body value of '', but the latest ones are all http:200 with a Body value of JSON object strings.
good to know these records are there BTW. Did not know about these.
Cheers

Re: Webhooks working from server, but not from terminals

PostPosted: Wed Jun 24, 2026 12:11 pm
by Mike.Sheen
JuiceyBrucey wrote:In the SY_WebHookMessage table, all of the status values are either 1 or 2.
When joining tables, there are some that have a status of 404 and a Body value of '', but the latest ones are all http:200 with a Body value of JSON object strings.
good to know these records are there BTW. Did not know about these.
Cheers


So all good, then? You have enough to work it out from here, right?