GET api/WorkRoomGenres?u={u}&t={t}&d={d}

获取WorkRoomGenre列表

Request Information

URI Parameters

NameDescriptionTypeAdditional information
u

用户ID

integer

Required

t

[用户ID]|[用户密码,加密]|[requestTime]|[设备标识],加密

string

Required

d

string

Required

Body Parameters

None.

Response Information

Resource Description

获取WorkRoomGenre列表

Collection of WorkRoomGenreOutput
NameDescriptionTypeAdditional information
ID

globally unique identifier

None.

Index

integer

None.

Name

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": "546f4736-985d-45e4-ba59-c54718d2823d",
    "Index": 2,
    "Name": "sample string 3"
  },
  {
    "ID": "546f4736-985d-45e4-ba59-c54718d2823d",
    "Index": 2,
    "Name": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfWorkRoomGenreOutput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Care365_V2.Model.TrainSys">
  <WorkRoomGenreOutput>
    <ID>546f4736-985d-45e4-ba59-c54718d2823d</ID>
    <Index>2</Index>
    <Name>sample string 3</Name>
  </WorkRoomGenreOutput>
  <WorkRoomGenreOutput>
    <ID>546f4736-985d-45e4-ba59-c54718d2823d</ID>
    <Index>2</Index>
    <Name>sample string 3</Name>
  </WorkRoomGenreOutput>
</ArrayOfWorkRoomGenreOutput>