GET api/TaskTypes/{id}

Get details for specified Task Type ID

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Unqiue Task Type ID

integer

Required

Body Parameters

None.

Response Information

Resource Description

TaskTypeReportDetails()

TaskTypeReportDetails
NameDescriptionTypeAdditional information
taskTypeID

integer

None.

taskTypeName

string

None.

taskTypeClassification

integer

None.

taskTypeCostDefinitions

string

None.

taskTypeCost

decimal number

None.

taskTypeDuration

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "taskTypeID": 707,
  "taskTypeName": "sample string 2",
  "taskTypeClassification": 534,
  "taskTypeCostDefinitions": "sample string 3",
  "taskTypeCost": 1.1,
  "taskTypeDuration": 581
}

application/xml, text/xml

Sample:
<TaskTypeReportDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Turnpoint.Controllers">
  <taskTypeClassification>534</taskTypeClassification>
  <taskTypeCost>1.1</taskTypeCost>
  <taskTypeCostDefinitions>sample string 3</taskTypeCostDefinitions>
  <taskTypeDuration>581</taskTypeDuration>
  <taskTypeID>707</taskTypeID>
  <taskTypeName>sample string 2</taskTypeName>
</TaskTypeReportDetails>