GET api/v1/infrastructure/timer

Get timers list

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Array of all timers

Collection of Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.TimerVo
NameDescriptionTypeAdditional 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": "f5251cfd-69f2-4cdc-afb2-fe45fa4c1bab",
    "FollowUpDateTime": "2025-04-20T06:25:25Z",
    "CallbackCommand": null
  },
  {
    "NodeId": 1,
    "TimerId": "f5251cfd-69f2-4cdc-afb2-fe45fa4c1bab",
    "FollowUpDateTime": "2025-04-20T06:25:25Z",
    "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-04-20T06:25:25.8506327+02:00</FollowUpDateTime>
    <NodeId>1</NodeId>
    <TimerId>f5251cfd-69f2-4cdc-afb2-fe45fa4c1bab</TimerId>
  </Timer>
  <Timer>
    <CallbackCommand xmlns:d3p1="http://mpsapi.healthbridge.com/platform/core/v1/command/" i:nil="true" />
    <FollowUpDateTime>2025-04-20T06:25:25.8506327+02:00</FollowUpDateTime>
    <NodeId>1</NodeId>
    <TimerId>f5251cfd-69f2-4cdc-afb2-fe45fa4c1bab</TimerId>
  </Timer>
</ArrayOfTimer>