GET api/TrackTimeProjects/GetProject/{id}

Gets the Track time project's details.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

GetTrackTimeProjectResult
NameDescriptionTypeAdditional information
Id

Id number of the Project.

integer

None.

Name

Name of the Project.

string

None.

Code

Code of the Project.

string

None.

Color

Color of the Project.

string

None.

IsArchived

True if the Project is archived.

boolean

None.

Description

Description of the Project.

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 2,
  "Name": "Archived project",
  "Code": "2",
  "Color": "#ffffff",
  "IsArchived": true,
  "Description": null
}

application/xml, text/xml

Sample:
<GetTrackTimeProjectResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RequestorApiDataStructures.Results">
  <Code>2</Code>
  <Color>#ffffff</Color>
  <Description i:nil="true" />
  <Id>2</Id>
  <IsArchived>true</IsArchived>
  <Name>Archived project</Name>
</GetTrackTimeProjectResult>