Add record procedure exec capabilities
This will allow us to perform bulk operations on record & record-values
This commit is contained in:
@@ -765,6 +765,30 @@
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "exec",
|
||||
"path": "/exec/{procedure}",
|
||||
"method": "POST",
|
||||
"title": "Executes server-side procedure over one or more module records",
|
||||
"parameters": {
|
||||
"path": [
|
||||
{
|
||||
"type": "string",
|
||||
"name": "procedure",
|
||||
"required": true,
|
||||
"title": "Name of procedure to execute"
|
||||
}
|
||||
],
|
||||
"post": [
|
||||
{
|
||||
"type": "[]ProcedureArg",
|
||||
"name": "args",
|
||||
"required": false,
|
||||
"title": "Procedure arguments"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "create",
|
||||
"method": "POST",
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user