GET api/App/T?u={u}&t={t}&d={d}

获取单个应用

Request Information

URI Parameters

NameDescriptionTypeAdditional information
u

[用户ID]

integer

Required

t

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

string

Required

d

ID=[AppID,int]

string

Required

Body Parameters

None.

Response Information

Resource Description

获取单个应用

AppOutput
NameDescriptionTypeAdditional 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": "fa7428ca-a6e6-4ff6-ad33-15e3c439e27d",
  "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": "db7e1749-ca61-4edb-a86f-972215a986dc",
      "Number": 2,
      "Name": "sample string 3",
      "LogoUrl": "sample string 4",
      "NewsID": 5,
      "CreateTime": "2025-05-13T19:49:09.2180742+08:00"
    },
    {
      "ID": "db7e1749-ca61-4edb-a86f-972215a986dc",
      "Number": 2,
      "Name": "sample string 3",
      "LogoUrl": "sample string 4",
      "NewsID": 5,
      "CreateTime": "2025-05-13T19:49:09.2180742+08:00"
    }
  ],
  "CreateTime": "2025-05-13T19:49:09.2180742+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-05-13T19:49:09.2180742+08:00</CreateTime>
      <ID>db7e1749-ca61-4edb-a86f-972215a986dc</ID>
      <LogoUrl>sample string 4</LogoUrl>
      <Name>sample string 3</Name>
      <NewsID>5</NewsID>
      <Number>2</Number>
    </AppChildNode>
    <AppChildNode>
      <CreateTime>2025-05-13T19:49:09.2180742+08:00</CreateTime>
      <ID>db7e1749-ca61-4edb-a86f-972215a986dc</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-05-13T19:49:09.2180742+08:00</CreateTime>
  <FocusPictureType>Hidden</FocusPictureType>
  <HasGroups>true</HasGroups>
  <Href>sample string 12</Href>
  <ID>fa7428ca-a6e6-4ff6-ad33-15e3c439e27d</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>