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