GET api/Admin/GetMovedDevices

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of MovedAdminDeviceModel
Name Description Type Additional information
Id

integer

None.

Comments

string

None.

MovedOn

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Comments": "sample string 2",
    "MovedOn": "2025-07-01T02:07:31.8603754Z"
  },
  {
    "Id": 1,
    "Comments": "sample string 2",
    "MovedOn": "2025-07-01T02:07:31.8603754Z"
  }
]

text/html

Sample:
[{"Id":1,"Comments":"sample string 2","MovedOn":"2025-07-01T02:07:31.8603754Z"},{"Id":1,"Comments":"sample string 2","MovedOn":"2025-07-01T02:07:31.8603754Z"}]

application/xml, text/xml

Sample:
<ArrayOfMovedAdminDeviceModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DAO.Models.Admin">
  <MovedAdminDeviceModel>
    <Comments>sample string 2</Comments>
    <Id>1</Id>
    <MovedOn>2025-07-01T02:07:31.8603754Z</MovedOn>
  </MovedAdminDeviceModel>
  <MovedAdminDeviceModel>
    <Comments>sample string 2</Comments>
    <Id>1</Id>
    <MovedOn>2025-07-01T02:07:31.8603754Z</MovedOn>
  </MovedAdminDeviceModel>
</ArrayOfMovedAdminDeviceModel>