GET api/GroupGenres?u={u}&t={t}&d={d}
获取群组类型(列表)
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| u |
用户ID |
integer |
Required |
| t |
[用户ID]|[用户密码,加密]|[requestTime]|[设备标识],加密 |
string |
Required |
| d | string |
Required |
Body Parameters
None.
Response Information
Resource Description
获取群组类型(列表)
Collection of GroupGenreOutput| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| IsVisible |
是否对外可见 |
boolean |
None. |
| IsCompany |
是否是企业群类型 |
boolean |
None. |
| Remarks | string |
None. |
|
| CreateTime | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": "96c5c81d-6073-4a6a-a267-a26cc08ac6c7",
"Name": "sample string 2",
"IsVisible": true,
"IsCompany": true,
"Remarks": "sample string 5",
"CreateTime": "2025-12-16T04:23:41.759636+08:00"
},
{
"ID": "96c5c81d-6073-4a6a-a267-a26cc08ac6c7",
"Name": "sample string 2",
"IsVisible": true,
"IsCompany": true,
"Remarks": "sample string 5",
"CreateTime": "2025-12-16T04:23:41.759636+08:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfGroupGenreOutput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Care365_V2.Model.IMSys">
<GroupGenreOutput>
<CreateTime>2025-12-16T04:23:41.759636+08:00</CreateTime>
<ID>96c5c81d-6073-4a6a-a267-a26cc08ac6c7</ID>
<IsCompany>true</IsCompany>
<IsVisible>true</IsVisible>
<Name>sample string 2</Name>
<Remarks>sample string 5</Remarks>
</GroupGenreOutput>
<GroupGenreOutput>
<CreateTime>2025-12-16T04:23:41.759636+08:00</CreateTime>
<ID>96c5c81d-6073-4a6a-a267-a26cc08ac6c7</ID>
<IsCompany>true</IsCompany>
<IsVisible>true</IsVisible>
<Name>sample string 2</Name>
<Remarks>sample string 5</Remarks>
</GroupGenreOutput>
</ArrayOfGroupGenreOutput>