POST api/workflowAction/ExecuteSql
Request Information
URI Parameters
None.
Body Parameters
ExecuteSqlVM| Name | Description | Type | Additional information |
|---|---|---|---|
| AccountID | integer |
None. |
|
| WorkflowLineID | integer |
None. |
|
| Description | string |
None. |
|
| SQL | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"AccountID": 1,
"WorkflowLineID": 1,
"Description": "sample string 1",
"SQL": "sample string 2"
}
application/xml, text/xml
Sample:
<ExecuteSqlVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.ViewModels.WorkflowAction"> <AccountID>1</AccountID> <Description>sample string 1</Description> <SQL>sample string 2</SQL> <WorkflowLineID>1</WorkflowLineID> </ExecuteSqlVM>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ActionResultVM| Name | Description | Type | Additional information |
|---|---|---|---|
| Response | IResponse |
None. |
Response Formats
application/json, text/json
Sample:
{
"Response": null
}
application/xml, text/xml
Sample:
<ActionResultVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.ViewModels"> <Response i:nil="true" /> </ActionResultVM>