House-on-the-Hill Logo
Pricing
WebHooks API - houseonthehill.com Product Documentation

WebHooks API

HotH WebHooks Integration allows tickets to be automatically pushed to another HotH system as new tickets. It can also be used to update certain fields in existing tickets via an HTTPS JSON API.

Ticket field changes and notes made in either HotH system will then be automatically synchronised to the other system.

The ticket fields that are synchronised are

Call:Subject
Call:SuperType
Call:Type
Call:SubType
Call:Status
Call:Priority
Call:Assignee
Call:Owner

The initial ‘push’ of a ticket from one end to the other is controlled using a custom tag against one or more categories. This enables one of the Type, Status or Priority values to control this. So a ticket may be raised in one system, then at a later time pushed to the other system. After this, the fields will be kept in-sync.

Successful synchronisation does depend on the two systems having identically named categories (Types, Status, Priority) and logins (Assignee, Owner).

Synchronisation is via an HTTP(S) JSON WebHook API, so both ends must be accessible to each other via an HTTP(S) URL.

Example using the curl command line tool to perform a manual HTTP request to update a ticket status using basic authentication.

curl -X POST -H “Content-Type:application/json”
-d”{\”webhookEvent\”:\”suppdesk\”,\”call\”:{\”reference\”:\”IM000001\”,\”status\”:\”Closed\”}}”
https://login:password@supportdeskwebserver.com?A=HttpApiSuppDeskWebHook

JSON format showing sample data values on the right.
If “reference” is empty or missing a new ticket is created.

{
	"webhookEvent":"suppdesk",
	"call" :
	{
	        "reference":"",
		"folderno":"1",
		"customerref":"HotH",
		"contact":"Buddy Dog",
		"phone":"1234567890",
		"email":"buddy@houseonthehill.com",
		"productref":"product1",
		"supertype":"Hardware",
		"type":"Fault",
		"subtype":"Electrical",
		"status":"Open",
		"priority":"High",
		"level":"24 Hour",
		"urgency":"Urgent",
		"action":"Action1",
		"assigneetag":"support",
		"ownertag":"super",
		"subject":"Test Call Subject",
		"description":"Test Call Description",
		"custownref":"ref1",
		"serialno":"serial1",
		"text1":"text1 etc. 1-6”
	}
 }


Still haven’t found what you’re looking for? Contact documentation@houseonthehill.com

Previous – Updating JIRANext – HTTPS Report API