Setting APIs
With webhook turned on in your application, your server receives HTTP POST requests from the Go2Joy server in the form of a response containing information.
Webhook endpoint requirements
HTTP POST requests with JSON payloads are sent to your webhook endpoint upon specific events on your application. The endpoint should meet the following requirements:
The endpoint needs to respond to
POSTrequests.The endpoint needs to parse
JSONpayloads.The endpoint needs to verify the identity of each API request, and your webhook endpoint will also verify whether the call parameters are valid. Therefore, each HTTP request sent to your webhook endpoint always contain the signature information. The requests with invalid signature will be rejected. Signature algorithm same as https://www.notion.so/tanhn/Q2-2025-API-Integration-Document-Hotel-Connect-API-ee5c6d5a3b3743cd93e083724da4ad43?source=copy_link#d20ef0c020b248eb939cc471160f5502
By default, the Go2Joy server sends an HTTP POST request and waits for a response from your webhook endpoint for 10 seconds. The server sends the same POST request up to 8 times until it receives a response success. To avoid too many requests, you should set up the endpoint to respond immediately to the server with a 200 OK response.
Get Webhook Setup Info
Get Webhook Setup Info
Subscribe Webhook Event
Subscribe webhook event
Last updated