Add record procedure exec capabilities

This will allow us to perform bulk operations on record & record-values
This commit is contained in:
Denis Arh
2019-09-13 11:29:01 +02:00
parent 05dfa30500
commit dc99bc2cb8
14 changed files with 565 additions and 53 deletions
+24
View File
@@ -189,6 +189,30 @@
]
}
},
{
"Name": "exec",
"Method": "POST",
"Title": "Executes server-side procedure over one or more module records",
"Path": "/exec/{procedure}",
"Parameters": {
"path": [
{
"name": "procedure",
"required": true,
"title": "Name of procedure to execute",
"type": "string"
}
],
"post": [
{
"name": "args",
"required": false,
"title": "Procedure arguments",
"type": "[]ProcedureArg"
}
]
}
},
{
"Name": "create",
"Method": "POST",