action orthanc_server_get_peers_id_system { label: "Get peer system information" description: "Get system information about some Orthanc peer. This corresponds to doing a `GET` request against the `/system` URI of the remote peer. This route can be used to test connectivity." provider: orthanc_server method: GET path: "/peers/{id}/system" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { description: "System information about the peer" type: "object" } }