GET api/Register/DepartmentId?locationId={locationId}&id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
locationId

integer

Required

id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Register
NameDescriptionTypeAdditional information
dateCreated

date

None.

departmentId

integer

None.

rcmId

integer

None.

enabled

boolean

None.

id

integer

None.

name

string

None.

displayName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "dateCreated": "2026-02-03T13:52:23.4965191+00:00",
    "departmentId": 2,
    "rcmId": 3,
    "enabled": true,
    "id": 5,
    "name": "sample string 6",
    "displayName": "sample string 7"
  },
  {
    "dateCreated": "2026-02-03T13:52:23.4965191+00:00",
    "departmentId": 2,
    "rcmId": 3,
    "enabled": true,
    "id": 5,
    "name": "sample string 6",
    "displayName": "sample string 7"
  }
]

application/xml, text/xml

Sample:
<ArrayOfRegister xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models.MIMOCore">
  <Register>
    <displayName xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">sample string 7</displayName>
    <enabled xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">true</enabled>
    <id xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">5</id>
    <name xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">sample string 6</name>
    <dateCreated>2026-02-03T13:52:23.4965191+00:00</dateCreated>
    <departmentId>2</departmentId>
    <rcmId>3</rcmId>
  </Register>
  <Register>
    <displayName xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">sample string 7</displayName>
    <enabled xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">true</enabled>
    <id xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">5</id>
    <name xmlns="http://schemas.datacontract.org/2004/07/libMIMO.models">sample string 6</name>
    <dateCreated>2026-02-03T13:52:23.4965191+00:00</dateCreated>
    <departmentId>2</departmentId>
    <rcmId>3</rcmId>
  </Register>
</ArrayOfRegister>