GET api/v2/Agents/{timestamp}

Find Agent Updates Timestamp : [ "yyyyMMddHHmmss", "yyyyMMddTHHmm", "yyyyMMddTHHmmss" ]

Request Information

Parameters

NameDescriptionAdditional information
timestamp

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "AgentID": 1,
    "UpdatedOn": "2025-04-24T12:23:05.4495527Z"
  },
  {
    "AgentID": 1,
    "UpdatedOn": "2025-04-24T12:23:05.4495527Z"
  },
  {
    "AgentID": 1,
    "UpdatedOn": "2025-04-24T12:23:05.4495527Z"
  }
]

application/xml, text/xml

Sample:
<ArrayOfAgentUpdateDTO>
  <AgentUpdateDTO>
    <AgentID>1</AgentID>
    <UpdatedOn>2025-04-24T12:23:05.4495527+00:00</UpdatedOn>
  </AgentUpdateDTO>
  <AgentUpdateDTO>
    <AgentID>1</AgentID>
    <UpdatedOn>2025-04-24T12:23:05.4495527+00:00</UpdatedOn>
  </AgentUpdateDTO>
  <AgentUpdateDTO>
    <AgentID>1</AgentID>
    <UpdatedOn>2025-04-24T12:23:05.4495527+00:00</UpdatedOn>
  </AgentUpdateDTO>
</ArrayOfAgentUpdateDTO>