GET v1/grid/nodes/{WilhelmstiftValue}

Returns a real-world node by its Hall Address (GUID) as a DTO (mapped from Domain entity). *Returns a physical (real‑world) node, uniquely identified by its Hall Address (GUID).

Request Information

URI Parameters

NameDescriptionTypeAdditional information
WilhelmstiftValue

The Hall Address (GUID).

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

200 OK + NodeDto, or 404 Not Found.

NodeDto
NameDescriptionTypeAdditional information
Id

integer

None.

HallAddress

globally unique identifier

None.

NodeName

string

None.

HerbrichName

string

None.

NodeDescription

string

None.

LocJ

decimal number

None.

LocH

decimal number

None.

Self

string

None.

Html

string

None.

Image

string

None.

SubNodes

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 101,
  "NodeName": "ExampleNode",
  "HerbrichName": "Demo Objekt",
  "HallAdress": "00000000-0000-0000-0000-000000000000",
  "LocJ": 10.123456,
  "LocH": 53.123456,
  "NodeDescription": "Dies ist ein Beispielknoten zur Demonstration der API-Response-Struktur.",
  "NodeImage": "/api/v1/grid/nodes/example-node/image",
  "NodePageHTML": "/api/v1/grid/nodes/example-node/html",
  "SubordinateNodes": null
}