POST api/Project/CreateProjectFilterQuery?projectID={projectID}
Create a issueType
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-11-06 06:16:34",
"LastModifiedDate": "2025-11-06 06:16:34",
"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-11-06T10:16:34.1391884-08:00</CreatedDate> <LastModifiedDate>2025-11-06T10:16:34.1391884-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| Name | Description | Type | Additional 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>