GET api/App/T?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 |
ID=[AppID,int] |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
获取单个应用
AppOutput| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | globally unique identifier |
None. |
|
| AppID |
应用ID |
integer |
None. |
| Number |
默认序号 |
integer |
None. |
| Name |
默认名称 |
string |
None. |
| HasGroups |
是否启用群组功能 有则加载群组管理菜单或app |
boolean |
None. |
| IsOpen |
是否对开放注册人员可见 |
boolean |
None. |
| NotOpenMsg |
提示信息 配置为不开放时的消息 |
boolean |
None. |
| FocusPictureType | FocusPictureTypes |
None. |
|
| Notice |
默认提示信息 未开通应用的提示 |
string |
None. |
| LogoUrl |
默认图标地址 |
string |
None. |
| Colspan |
图标占用的宽度 一行显示4个图标,colspan=1代表该图标占用一个标准图标宽度 |
string |
None. |
| IsDisplayName |
是否显示应用名称 |
boolean |
None. |
| Href |
应用程序所在路径 |
string |
None. |
| Childs | Collection of AppChildNode |
None. |
|
| CreateTime | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": "20dc97ce-13d1-4424-9558-4a04c7bbd747",
"AppID": 2,
"Number": 3,
"Name": "sample string 4",
"HasGroups": true,
"IsOpen": true,
"NotOpenMsg": true,
"FocusPictureType": 0,
"Notice": "sample string 8",
"LogoUrl": "sample string 9",
"Colspan": "sample string 10",
"IsDisplayName": true,
"Href": "sample string 12",
"Childs": [
{
"ID": "0c937500-3bc9-472c-b8a1-dcc92392f737",
"Number": 2,
"Name": "sample string 3",
"LogoUrl": "sample string 4",
"NewsID": 5,
"CreateTime": "2025-12-16T04:23:39.5252825+08:00"
},
{
"ID": "0c937500-3bc9-472c-b8a1-dcc92392f737",
"Number": 2,
"Name": "sample string 3",
"LogoUrl": "sample string 4",
"NewsID": 5,
"CreateTime": "2025-12-16T04:23:39.5252825+08:00"
}
],
"CreateTime": "2025-12-16T04:23:39.5252825+08:00"
}
application/xml, text/xml
Sample:
<AppOutput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Care365_V2.Model.AppConfigSys">
<AppID>2</AppID>
<Childs>
<AppChildNode>
<CreateTime>2025-12-16T04:23:39.5252825+08:00</CreateTime>
<ID>0c937500-3bc9-472c-b8a1-dcc92392f737</ID>
<LogoUrl>sample string 4</LogoUrl>
<Name>sample string 3</Name>
<NewsID>5</NewsID>
<Number>2</Number>
</AppChildNode>
<AppChildNode>
<CreateTime>2025-12-16T04:23:39.5252825+08:00</CreateTime>
<ID>0c937500-3bc9-472c-b8a1-dcc92392f737</ID>
<LogoUrl>sample string 4</LogoUrl>
<Name>sample string 3</Name>
<NewsID>5</NewsID>
<Number>2</Number>
</AppChildNode>
</Childs>
<Colspan>sample string 10</Colspan>
<CreateTime>2025-12-16T04:23:39.5252825+08:00</CreateTime>
<FocusPictureType>Hidden</FocusPictureType>
<HasGroups>true</HasGroups>
<Href>sample string 12</Href>
<ID>20dc97ce-13d1-4424-9558-4a04c7bbd747</ID>
<IsDisplayName>true</IsDisplayName>
<IsOpen>true</IsOpen>
<LogoUrl>sample string 9</LogoUrl>
<Name>sample string 4</Name>
<NotOpenMsg>true</NotOpenMsg>
<Notice>sample string 8</Notice>
<Number>3</Number>
</AppOutput>