POST api/Splashtop/groups

Request Information

URI Parameters

None.

Body Parameters

SplashtopGroupInfo
NameDescriptionTypeAdditional information
name

string

None.

is_member_group

boolean

None.

is_computer_group

boolean

None.

connection_pool

boolean

None.

GroupLevel

string

None.

Request Formats

application/json, text/json

Sample:
{
  "name": "sample string 1",
  "is_member_group": true,
  "is_computer_group": true,
  "connection_pool": true,
  "GroupLevel": "sample string 5"
}

application/xml, text/xml

Sample:
<SplashtopController.SplashtopGroupInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iMOE_Back_End.Controllers">
  <GroupLevel>sample string 5</GroupLevel>
  <connection_pool>true</connection_pool>
  <is_computer_group>true</is_computer_group>
  <is_member_group>true</is_member_group>
  <name>sample string 1</name>
</SplashtopController.SplashtopGroupInfo>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

SplashtopActionResponse
NameDescriptionTypeAdditional information
data

執行帳號

string

None.

Action

執行功能

string

None.

result

執行結果

boolean

None.

remark

執行失敗時所使用欄位,備註錯誤原因

string

None.

Response Formats

application/json, text/json

Sample:
{
  "data": "sample string 1",
  "Action": "sample string 2",
  "result": true,
  "remark": "sample string 4"
}

application/xml, text/xml

Sample:
<SplashtopController.SplashtopActionResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iMOE_Back_End.Controllers">
  <Action>sample string 2</Action>
  <data>sample string 1</data>
  <remark>sample string 4</remark>
  <result>true</result>
</SplashtopController.SplashtopActionResponse>