Page
113
5.
POST to delete the group
Method: POST
api/op/group/<int:groupID>/delete
Example Response:
{
"params"
: {
"GroupId"
:
2
},
"error"
:
null
,
"result"
: {
"GroupId"
:
2
}
}
6.
POST to delete the preset
Method: POST
api/op/preset/<int:presetID>/delete
Example Response:
{
"params":
{
"PresetId":
1
},
"error":
null,
"result":
{
"PresetId":
1
}
}
7.
POST to rename group
Method: POST
/api/op/group/<int:groupID>/newGrpNameSdi/rename
Example Response:
{
"params"
: {
"GroupId"
:
1
,
"GroupName"
:
"newGrpNameSdi"
},
"error"
:
null
,
"result"
: {
"GroupId"
:
1
,
"GroupName"
:
"newGrpNameSdi"
}
}