GET api/v1/infrastructure/timer/{nodeid}
Get timers list for node
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
nodeid |
Integer identifier of node |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Array of all timers
Collection of Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.TimerVoName | Description | Type | Additional information |
---|---|---|---|
NodeId | integer |
None. |
|
TimerId | globally unique identifier |
None. |
|
FollowUpDateTime | date |
None. |
|
CallbackCommand | Com.Healthbridge.Core.CommonDomain.Interface.Command |
None. |
Response Formats
application/json, text/json
Sample:
[ { "NodeId": 1, "TimerId": "65e4a969-3455-4b04-821c-d94c10a3071e", "FollowUpDateTime": "2025-06-19T21:37:37Z", "CallbackCommand": null }, { "NodeId": 1, "TimerId": "65e4a969-3455-4b04-821c-d94c10a3071e", "FollowUpDateTime": "2025-06-19T21:37:37Z", "CallbackCommand": null } ]
application/xml, text/xml
Sample:
<ArrayOfTimer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://mpsapi.healthbridge.com/platform/commondomain/v1/timer/"> <Timer> <CallbackCommand xmlns:d3p1="http://mpsapi.healthbridge.com/platform/core/v1/command/" i:nil="true" /> <FollowUpDateTime>2025-06-19T21:37:37.7963014+02:00</FollowUpDateTime> <NodeId>1</NodeId> <TimerId>65e4a969-3455-4b04-821c-d94c10a3071e</TimerId> </Timer> <Timer> <CallbackCommand xmlns:d3p1="http://mpsapi.healthbridge.com/platform/core/v1/command/" i:nil="true" /> <FollowUpDateTime>2025-06-19T21:37:37.7963014+02:00</FollowUpDateTime> <NodeId>1</NodeId> <TimerId>65e4a969-3455-4b04-821c-d94c10a3071e</TimerId> </Timer> </ArrayOfTimer>