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

Create a issueType

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 14:53:43",
  "LastModifiedDate": "2024-12-21 14:53:43",
  "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-21T18:53:43.8228339-08:00</CreatedDate>
  <LastModifiedDate>2024-12-21T18:53:43.8228339-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

Create a issueType

API_Data_Int32
NameDescriptionTypeAdditional information
Success

boolean

None.

Error

ErrorInfo

None.

Data

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Error": {
    "ErrorCode": 1,
    "ErrorMessage": "sample string 1"
  },
  "Data": 2
}

application/xml, text/xml

Sample:
<API_Data_int xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.Common">
  <Data>2</Data>
  <Error>
    <ErrorCode>1</ErrorCode>
    <ErrorMessage>sample string 1</ErrorMessage>
  </Error>
  <Success>true</Success>
</API_Data_int>