POST api/Project/EditProjectFilterQuery?projectID={projectID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
projectID

projectID

integer

Required

Body Parameters

projectFilterQuery

ProjectFilterQuery
NameDescriptionTypeAdditional 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": "2024-12-21 15:03:11",
  "LastModifiedDate": "2024-12-21 15:03:11",
  "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>2024-12-21T19:03:11.5512332-08:00</CreatedDate>
  <LastModifiedDate>2024-12-21T19:03:11.5512332-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
NameDescriptionTypeAdditional 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>