This is an old revision of the document!


Old JSON Formats

The 2026 version of ARDI updated up a number of JSON API endpoints to be cleaner and more consistent - previously these endpoints converted XML to JSON, which ended up creating messy JSON structures that weren't very efficient.

/getconfiguration

This is the old format for the /api/getconfiguration function.

{
	"results": [{
		"asset": [{
			"id": "175",
			"name": "AN6-2993 Drive",
			"ern": "",
			"fullname": "Main Office Lower Ground Slurry System Primary Pump AN6-2993 Drive"
		},
                {
			"id": "178",
			"name": "Primary Pump",
			"ern": "PU12-92B",
			"fullname": "Main Office Lower Ground Slurry System Primary Pump"
		}]
	}]
}

This is the old format for the api/asset/search function.

{
	"results": [{
		"asset": [{
			"id": "175",
			"name": "AN6-2993 Drive",
			"ern": "",
			"fullname": "Main Office Lower Ground Slurry System Primary Pump AN6-2993 Drive"
		},
                {
			"id": "178",
			"name": "Primary Pump",
			"ern": "PU12-92B",
			"fullname": "Main Office Lower Ground Slurry System Primary Pump"
		}]
	}]
}

/assets/detail

This is the response from the /assets/detail function

{
	{
	"assets": [{
		"asset": [{
			"name": ["Site"],
			"fullname": ["Site"],
			"id": ["5"],
			"description": ["This is your initial ARDI site"],
			"isolation": [{
				"status": ["Unknown"]
			}],
			"upstreamalerts": ["no"],
			"properties": [{
				"Address": [{
					"id": "3",
					"type": "ADDRESS",
					"name": "Address",
					"class": "local",
					"source": "5",
					"quality": "good",
					"group": "",
					"address": ["18\/2 Memorial Drive, Shellharbour City Center, NSW, Australia"]
				}]
			}],
			"media": ["   "],
			"alerts": ["   "],
			"relationships": [{
				"related": [{
					"id": "2",
					"priority": "301",
					"name": "Location",
					"upname": "Inside",
					"downname": "Contains",
					"to": [{
						"id": "1",
						"direction": "upstream",
						"name": "Location"
					}, {
						"id": "43",
						"direction": "downstream",
						"name": "Switchroom"
					}, {
						"id": "44",
						"direction": "downstream",
						"name": "Workshop"
					}, {
						"id": "46",
						"direction": "downstream",
						"name": "Level One"
					}, {
						"id": "47",
						"direction": "downstream",
						"name": "Level Two"
					}, {
						"id": "49",
						"direction": "downstream",
						"name": "External"
					}, {
						"id": "94",
						"direction": "downstream",
						"name": "Mobile"
					}]
				}]
			}],
			"zeroenergy": ["Yes"],
			"tags": [{
				"tag": ["Location"]
			}]
		}]
	}]

}