GET api/TaskTypes/ListTypees

Get details on all known Task Types

Request Information

URI Parameters

None.

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>