POST api/P1QueryDefinition/Rename
Rename a specified query
Request Information
URI Parameters
None.
Body Parameters
RenameQueryBinderName | Description | Type | Additional information |
---|---|---|---|
ProjectId | integer |
None. |
|
QueryId | integer |
None. |
|
NewName | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "ProjectId": 1, "QueryId": 2, "NewName": "sample string 3" }
application/xml, text/xml
Sample:
<RenameQueryBinder xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.Binding"> <NewName>sample string 3</NewName> <ProjectId>1</ProjectId> <QueryId>2</QueryId> </RenameQueryBinder>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Rename a specified query
ApiReturnName | Description | Type | Additional information |
---|---|---|---|
Success | boolean |
None. |
|
Error | ErrorInfo |
None. |
Response Formats
application/json, text/json
Sample:
{ "Success": true, "Error": { "ErrorCode": 1, "ErrorMessage": "sample string 1" } }
application/xml, text/xml
Sample:
<ApiReturn xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.Common"> <Error> <ErrorCode>1</ErrorCode> <ErrorMessage>sample string 1</ErrorMessage> </Error> <Success>true</Success> </ApiReturn>