POST api/timeTracking/TimeCagetories?projectId={projectId}
Get time categories based on project id.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| projectId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Get time categories based on project id.
API_Data_ListOfChoiceObject| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Error | ErrorInfo |
None. |
|
| Data | Collection of ChoiceObject |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Error": {
"ErrorCode": 1,
"ErrorMessage": "sample string 1"
},
"Data": [
{
"Id": 1,
"Name": "sample string 2",
"IsActive": true
},
{
"Id": 1,
"Name": "sample string 2",
"IsActive": true
}
]
}
application/xml, text/xml
Sample:
<API_Data_ArrayOfChoiceObject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.Common">
<Data>
<ChoiceObject>
<Id>1</Id>
<IsActive>true</IsActive>
<Name>sample string 2</Name>
</ChoiceObject>
<ChoiceObject>
<Id>1</Id>
<IsActive>true</IsActive>
<Name>sample string 2</Name>
</ChoiceObject>
</Data>
<Error>
<ErrorCode>1</ErrorCode>
<ErrorMessage>sample string 1</ErrorMessage>
</Error>
<Success>true</Success>
</API_Data_ArrayOfChoiceObject>