Time Entry Types

Get the project time entry types in TeamPulse.

GET /projects/{projectId}/timeentrytypes - Get time entry types for a specific project.

Time Entry Type Model

The object representing a time entry has the following properties:

name: string - The name of the time entry type

Resource Url

To make API requests use the URL [teampulse]/api/v1 where [teampulse] is the URL to the TeamPulse instance which you want to manage via the API.

Example:
[teampulse]/api/v1/projects/1/timeentrytypes

Get time entry types

GET /projects/{projectId}/timeentrytypes - Get time entry types for a specific project.

Response

HTTP/1.1 200

{
  "totalResults": 2,
  "top": 2,
  "results": [
     {
        "name": "Billable" 
     },
     {
        "name": "Non-Billable" 
     },
  ]
}