POST api/Project/EditProjectFilterQuery?projectID={projectID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| projectID |
projectID |
integer |
Required |
Body Parameters
projectFilterQuery
ProjectFilterQuery| Name | Description | Type | Additional information |
|---|---|---|---|
| ProjectBaseFamilyID | integer |
None. |
|
| QueryID | integer |
None. |
|
| QueryName | string |
None. |
|
| QueryKeywords | string |
None. |
|
| CreatedDate | date |
None. |
|
| LastModifiedDate | date |
None. |
|
| UserID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ProjectBaseFamilyID": 1,
"QueryID": 2,
"QueryName": "sample string 3",
"QueryKeywords": "sample string 4",
"CreatedDate": "2025-12-09 06:16:17",
"LastModifiedDate": "2025-12-09 06:16:17",
"UserID": 1
}
application/xml, text/xml
Sample:
<ProjectFilterQuery xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.DevTrackDB"> <CreatedDate>2025-12-09T10:16:17.7479051-08:00</CreatedDate> <LastModifiedDate>2025-12-09T10:16:17.7479051-08:00</LastModifiedDate> <ProjectBaseFamilyID>1</ProjectBaseFamilyID> <QueryID>2</QueryID> <QueryKeywords>sample string 4</QueryKeywords> <QueryName>sample string 3</QueryName> <UserID>1</UserID> </ProjectFilterQuery>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ApiReturn| Name | 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>