Api Reference

Timeneye timeneye
Help

Apiary Powered Documentation

Sign in with Apiary account.

Api Reference

Version: 11

Introduction

Notice

Support for this API is no longer available. Please migrate your apps to our newest API version here. If you do not have yet access to the new app version plese contact our support team. For more information about our new APIs you can visit our Knowledge base here.

Overview

Timeneye APIs use the OAuth 2.0 flow for authentication.

In order to start using our apis you need to create a new app under your developer panel. The newly created app will have a clientId, to identify your app, that can be used on public code (like JS) and a clientSecret which, you guessed it, must stay secret.

To get the access token needed to perform actions for your users, you need to ask them to authorize your app redirecting them to https://track.timeneye.com/authorize/{clientId}.

They will be showed a view with info about your app and they will be able to confirm or cancel the authorization. In case they accept they will be redirected to the url you have configured as Redirect URI in your app settings, the redirect url will include also a code that you need later in order to get the access token. Otherwise they will be redirected to the Cancel URI.This request has to be made specifying a specific header: Authorization: Basic XXX, where XXX is base64('[clientId]:[clientSecret]') and setting the appropriate code and clientId GET query parameters.

At this point to get the access token just call the Get token endpoint and you will get back an object containing accessToken, refreshToken and expiration.

Access tokens expire after 14 days, to get the new one just call the Refresh token endpoint.

From there on, you can call our endpoints adding a specific header Bearer: [accessToken].

In this page you will be able to test out all our endpoints using a temporary token that you can generate from your developer panel, clicking the "Get API docu. token" button.

Useful information

Endpoints base url and protocol

All our API endpoints have as baseurl https://track.timeneye.com/api/3 and all calls must be performed via https. CORS is supported.

Dates and datetimes

All datetimes, both when returned and when expected as parameter, are in the MySQL format YYYY-MM-DD HH:mm:ss (YYYY-MM-DD for dates) and they are considered GMT+0.

What PM and GM means?

We use the shortened form PM to describe the project manager access level, and GM for group managers.

Task And task categories

On February 2016 we renamed tasks as phases, but all phases endpoints and parameters still use the task term (same thing for task categories which are now called phase categories). It can be a little confusing, but for the moment we will keep the reference as it is. We may create new endpoint in the future and leave the current ones a bit longer for backward compatibility.

Rate limits

In order to be able to offer a reliable service to all our users and customers we limit how many requests can be performed per token every 5 minutes.

Every token has a limited number of requests (in the table below) that can be performed in a given window of time. The requests count is reset every 5 minutes.

In case the limit is reached, the following requests (for the given token) will receive a 429 error with a retryAfter attribute that indicates after which datetime (GMT+0) you will be able to retry the request.

    {
      "code" : 429,
      "description" : "Too many requests",
      "retryAfter" : "2018-06-22 14:25:10"
    }

The number of requests that can be performed every 5 minutes changes based on which plan has the user's account, at the moment of the request.

Plan Maximum requests per 5 minutes
Free 500
Business (any tier)/PRO 2000

Errors

All our API endpoints return a 200 HTTP status code when everything works as expected, but sometimes it may return an error.

Our APIs return different error codes based on the failure cause, ranging from missing parameters to server errors on our side.

Every error returns also an object with the code and an optional description that can be used in debug to understand the specific case.

In the table below you find a list of all our error codes with a generic description of the cause, in case the endpoint doesn't return a description of the specific case.

Code Meaning Description
400 Bad request One or multiple required parameters are missing or invalid.
401 Unauthorized The authorization token is missing, invalid or expired.
402 Payment required The request was valid, but the authorizated user's workspace subscription is expired.
403 Forbidden Both the authentication and the request syntax are correct, but the resource you're trying to edit requires an access level that the authorized user doesn't have.
404 Not found The requested resource is not available.
409 Conflict The resource you're trying to create already exists.
This can happen when trying to create a project with a nem already in use or a user with an email linked to an existing user.
423 Locked The resource you're trying to edit is locked, and the authorized user doesn't have the access level required to edit a locked resource.
429 Too many requests You have reached your rate limit for the given token.
The returned error message will have the attribute retryAfter with the datetime UTC+0 after which you'll be able to retry your request.
See the "Rate limit" section for more info.
500 Internal server error There was a problem on our side.

Authentication and Authorization

TokenKeyInHeader

API Key
Header name:Bearer

Reference

Authentication


/api/3/token/{clientId}/{code}

URI Parameters
clientId
codeThe code appended in the redirectUri when Timeneye redirects back to your app after the user has authorized your app

Get token

TokenKeyInHeader
Response
object
  • accessToken
    string, optional
    XXXXXXXXXXXXX
  • refreshToken
    string, optional
    XXXXXXXXXXXXX
  • expiration
    string, optional
    2018-06-01 15:00:00

/api/3/refresh-token/{clientId}/{refreshToken}

URI Parameters
clientId
refreshToken

Refresh token

TokenKeyInHeader
Response
object
  • accessToken
    string, optional
    XXXXXXXXXXXXX
  • refreshToken
    string, optional
    XXXXXXXXXXXXX
  • expiration
    string, optional
    2018-06-01 15:00:00

Projects


Projects related Endpoints visit Timeneye Vocabulary for more information

/api/3/projects

Get projects list

TokenKeyInHeader

Returns the list of projects accessible by the authenticated user.

Response
object
  • projects
    array, optional
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800

Create new project

TokenKeyInHeader

This endpoint is available only if the authenticated user is an Admin or GM. The authenticated user is automatically added as the PM of the project.

Request
object
  • name
    Name of the new project
    string, required
Response
object
  • id
    id of the newly created app.
    string, required
Request
object
  • name
    Name of the new project
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • name
    Name of the new project
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • name
    Name of the new project
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • name
    Name of the new project
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • name
    Name of the new project
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • name
    Name of the new project
    string, required
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800
Request
object
  • name
    Name of the new project
    string, required
Response
object
  • code
    string, required
  • description
    string, required

/api/3/projects/{projectId}

URI Parameters
projectIdNumeric ID of the project

Get project's details

TokenKeyInHeader

Some details are returned only if the authenticated user is an Admin or PM of the given project.

Response
object
  • id
    project unique identifier
    number, required
    25
  • name
    Project name
    string, required
    Arvo's project
  • isActive
    tells if the project is active 1 or not 0
    enum, required[number, fixed]
  • clientId
    Visible by PMs only
    number, optional
    25
  • clientName
    Client name. Visible by PMs only
    string, optional
    Axion
  • isBillable
    Indicate if the project is ether Billable 1 or not 0
    enum, optional[number, fixed]
  • hourlyRate

    The hourly Price. Visible by PM only.

    • Value must be of format 'float'
    number, optional
    20.6
  • budgetMinutes
    Indicates the project budget mintes
    number, optional
    360
  • totalMinutes

    Indicates the project's total spent minutes.

    number, optional
    120
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800

Update project

TokenKeyInHeader

This endpoint is available only if the authenticated user is an Admin or PM of the given project.

Request
object
  • name

    The name of the project, if edited.

    string, optional
  • isBillable
    Indicates if the project is billable 1 or not 0
    enum, optional[number, fixed]
  • hourlyRate

    The project's new hourly rate

    number, optional
  • budgetMinutes
    The project new budget in minutes
    number, optional
Request
object
  • name

    The name of the project, if edited.

    string, optional
  • isBillable
    Indicates if the project is billable 1 or not 0
    enum, optional[number, fixed]
  • hourlyRate

    The project's new hourly rate

    number, optional
  • budgetMinutes
    The project new budget in minutes
    number, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • name

    The name of the project, if edited.

    string, optional
  • isBillable
    Indicates if the project is billable 1 or not 0
    enum, optional[number, fixed]
  • hourlyRate

    The project's new hourly rate

    number, optional
  • budgetMinutes
    The project new budget in minutes
    number, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • name

    The name of the project, if edited.

    string, optional
  • isBillable
    Indicates if the project is billable 1 or not 0
    enum, optional[number, fixed]
  • hourlyRate

    The project's new hourly rate

    number, optional
  • budgetMinutes
    The project new budget in minutes
    number, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • name

    The name of the project, if edited.

    string, optional
  • isBillable
    Indicates if the project is billable 1 or not 0
    enum, optional[number, fixed]
  • hourlyRate

    The project's new hourly rate

    number, optional
  • budgetMinutes
    The project new budget in minutes
    number, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • name

    The name of the project, if edited.

    string, optional
  • isBillable
    Indicates if the project is billable 1 or not 0
    enum, optional[number, fixed]
  • hourlyRate

    The project's new hourly rate

    number, optional
  • budgetMinutes
    The project new budget in minutes
    number, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • name

    The name of the project, if edited.

    string, optional
  • isBillable
    Indicates if the project is billable 1 or not 0
    enum, optional[number, fixed]
  • hourlyRate

    The project's new hourly rate

    number, optional
  • budgetMinutes
    The project new budget in minutes
    number, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • name

    The name of the project, if edited.

    string, optional
  • isBillable
    Indicates if the project is billable 1 or not 0
    enum, optional[number, fixed]
  • hourlyRate

    The project's new hourly rate

    number, optional
  • budgetMinutes
    The project new budget in minutes
    number, optional
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800
Request
object
  • name

    The name of the project, if edited.

    string, optional
  • isBillable
    Indicates if the project is billable 1 or not 0
    enum, optional[number, fixed]
  • hourlyRate

    The project's new hourly rate

    number, optional
  • budgetMinutes
    The project new budget in minutes
    number, optional
Response
object
  • code
    string, required
  • description
    string, required

Delete project

TokenKeyInHeader

This endpoint is available only if the authenticated user is an Admin. This action is irreversible and will delete permanently also all entries and timers linked to the given project.

Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800
Response
object
  • code
    string, required
  • description
    string, required

/api/3/projects/{projectId}/users

URI Parameters
projectIdThe Project Id

Get project's users list

TokenKeyInHeader

This endpoint is available only if the authenticated user is an Admin or PM of the given project.

Response
object
  • users
    array, optional
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800
Response
object
  • code
    string, required
  • description
    string, required

Add user to project

TokenKeyInHeader

This endpoint is available only if the authenticated user is an Admin or PM of the given project.

Request
object
  • userId
    The User Identification Number
    number, required
  • isPM
    Indicates if the user would be a PM 1 or not 0 for this project
    enum, optional[number, fixed]
  • budgetHours
    Indicates the amount of budget time to assign to the user in hours
    number, optional
Request
object
  • userId
    The User Identification Number
    number, required
  • isPM
    Indicates if the user would be a PM 1 or not 0 for this project
    enum, optional[number, fixed]
  • budgetHours
    Indicates the amount of budget time to assign to the user in hours
    number, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • userId
    The User Identification Number
    number, required
  • isPM
    Indicates if the user would be a PM 1 or not 0 for this project
    enum, optional[number, fixed]
  • budgetHours
    Indicates the amount of budget time to assign to the user in hours
    number, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • userId
    The User Identification Number
    number, required
  • isPM
    Indicates if the user would be a PM 1 or not 0 for this project
    enum, optional[number, fixed]
  • budgetHours
    Indicates the amount of budget time to assign to the user in hours
    number, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • userId
    The User Identification Number
    number, required
  • isPM
    Indicates if the user would be a PM 1 or not 0 for this project
    enum, optional[number, fixed]
  • budgetHours
    Indicates the amount of budget time to assign to the user in hours
    number, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • userId
    The User Identification Number
    number, required
  • isPM
    Indicates if the user would be a PM 1 or not 0 for this project
    enum, optional[number, fixed]
  • budgetHours
    Indicates the amount of budget time to assign to the user in hours
    number, optional
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800
Request
object
  • userId
    The User Identification Number
    number, required
  • isPM
    Indicates if the user would be a PM 1 or not 0 for this project
    enum, optional[number, fixed]
  • budgetHours
    Indicates the amount of budget time to assign to the user in hours
    number, optional
Response
object
  • code
    string, required
  • description
    string, required

/api/3/projects/{projectId}/users/{userId}

URI Parameters
projectIdThe Project Id
userIdThe User Id

Update project's user

TokenKeyInHeader

Updates a user's data relative to the given project. This endpoint is available only if the authenticated user is an Admin or PM of the given project.

Request
object
  • budgetHours
    The number of hours to set in the hours budget
    number, optional
  • isPM

    Indicate if the user should be made PM 1 or not 0 (default)

    enum, optional[number, fixed]
Request
object
  • budgetHours
    The number of hours to set in the hours budget
    number, optional
  • isPM

    Indicate if the user should be made PM 1 or not 0 (default)

    enum, optional[number, fixed]
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • budgetHours
    The number of hours to set in the hours budget
    number, optional
  • isPM

    Indicate if the user should be made PM 1 or not 0 (default)

    enum, optional[number, fixed]
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • budgetHours
    The number of hours to set in the hours budget
    number, optional
  • isPM

    Indicate if the user should be made PM 1 or not 0 (default)

    enum, optional[number, fixed]
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • budgetHours
    The number of hours to set in the hours budget
    number, optional
  • isPM

    Indicate if the user should be made PM 1 or not 0 (default)

    enum, optional[number, fixed]
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • budgetHours
    The number of hours to set in the hours budget
    number, optional
  • isPM

    Indicate if the user should be made PM 1 or not 0 (default)

    enum, optional[number, fixed]
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • budgetHours
    The number of hours to set in the hours budget
    number, optional
  • isPM

    Indicate if the user should be made PM 1 or not 0 (default)

    enum, optional[number, fixed]
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800

Remove user from project

TokenKeyInHeader

This endpoint is available only if the authenticated user is an Admin.

Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800

Phases


Phases related Endpoints visit Timeneye Vocabulary for more information

/api/3/projects/{projectId}/tasks

URI Parameters
projectIdNumeric ID of the project

Get phases list

TokenKeyInHeader

Some details are returned only if the authenticated user is an Admin or PM of the given project.

Response
object
  • projects
    array, optional
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800

Create new phase

TokenKeyInHeader

This endpoint is available only if the authenticated user is an Admin or PM of the given project.

Request
object
  • name
    The name of the phase
    string, optional
  • categoryId
    The id of the phase category.
    number, optional
  • budgetHours

    The budget hours for the phase. It's only visible to PMs

    number, optional
Response
object
  • id
    The id of the newly created phase
    number, optional
    5432
Request
object
  • name
    The name of the phase
    string, optional
  • categoryId
    The id of the phase category.
    number, optional
  • budgetHours

    The budget hours for the phase. It's only visible to PMs

    number, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • name
    The name of the phase
    string, optional
  • categoryId
    The id of the phase category.
    number, optional
  • budgetHours

    The budget hours for the phase. It's only visible to PMs

    number, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • name
    The name of the phase
    string, optional
  • categoryId
    The id of the phase category.
    number, optional
  • budgetHours

    The budget hours for the phase. It's only visible to PMs

    number, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • name
    The name of the phase
    string, optional
  • categoryId
    The id of the phase category.
    number, optional
  • budgetHours

    The budget hours for the phase. It's only visible to PMs

    number, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • name
    The name of the phase
    string, optional
  • categoryId
    The id of the phase category.
    number, optional
  • budgetHours

    The budget hours for the phase. It's only visible to PMs

    number, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • name
    The name of the phase
    string, optional
  • categoryId
    The id of the phase category.
    number, optional
  • budgetHours

    The budget hours for the phase. It's only visible to PMs

    number, optional
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800
Request
object
  • name
    The name of the phase
    string, optional
  • categoryId
    The id of the phase category.
    number, optional
  • budgetHours

    The budget hours for the phase. It's only visible to PMs

    number, optional
Response
object
  • code
    string, required
  • description
    string, required

/api/3/projects/{projectId}/tasks/{taskId}

URI Parameters
projectIdNumeric ID of the project
taskIdNumeric ID of the phase

Get phase details

TokenKeyInHeader

Some details are returned only if the authenticated user is an Admin or PM of the given project.

Response
object
  • id
    The unique identifier of the phase.
    number, required
    607
  • name
    The name of the phase
    string, required
    Phase's name
  • isOpen

    Tells if the phase is either open or closed. 1 - open 0 - closed

    enum, required[number, fixed]
  • categoryId
    The id of the phase category.
    number, required
    74
  • categoryName
    The name of the category
    string, required
    category name
  • budgetMinutes

    The budget minutes for the phase. It's only visible to PMs

    number, optional
    120
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800

Update phase

TokenKeyInHeader

This endpoint is available only if the authenticated user is an Admin or PM of the given project.

Request
object
  • name
    The name of the phase
    string, required
  • categoryId
    The id of the phase category.
    number, optional
  • budgetHours

    The budget hours for the phase. It's only visible to PMs

    number, optional
Request
object
  • name
    The name of the phase
    string, required
  • categoryId
    The id of the phase category.
    number, optional
  • budgetHours

    The budget hours for the phase. It's only visible to PMs

    number, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • name
    The name of the phase
    string, required
  • categoryId
    The id of the phase category.
    number, optional
  • budgetHours

    The budget hours for the phase. It's only visible to PMs

    number, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • name
    The name of the phase
    string, required
  • categoryId
    The id of the phase category.
    number, optional
  • budgetHours

    The budget hours for the phase. It's only visible to PMs

    number, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • name
    The name of the phase
    string, required
  • categoryId
    The id of the phase category.
    number, optional
  • budgetHours

    The budget hours for the phase. It's only visible to PMs

    number, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • name
    The name of the phase
    string, required
  • categoryId
    The id of the phase category.
    number, optional
  • budgetHours

    The budget hours for the phase. It's only visible to PMs

    number, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • name
    The name of the phase
    string, required
  • categoryId
    The id of the phase category.
    number, optional
  • budgetHours

    The budget hours for the phase. It's only visible to PMs

    number, optional
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800
Request
object
  • name
    The name of the phase
    string, required
  • categoryId
    The id of the phase category.
    number, optional
  • budgetHours

    The budget hours for the phase. It's only visible to PMs

    number, optional
Response
object
  • code
    string, required
  • description
    string, required

Delete phase

TokenKeyInHeader

This endpoint is available only if the authenticated user is an Admin or PM of the given project. This action is irreversible and will delete permanently also all entries and timers linked to the given phase.

Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800
Response
object
  • code
    string, required
  • description
    string, required

Users


Users related Endpoints visit Timeneye Vocabulary for moreinformation

/api/3/users

Get users list

TokenKeyInHeader

This endpoint is available only if the authenticated user is an Admin.

Response
object
  • users
    array, optional
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800

Create user

TokenKeyInHeader

This endpoint is available only if the authenticated user is an Admin.

Request
object
  • email
    User email
    string, required
  • name
    User name
    string, required
  • isAdmin

    Indicates if the user is an admin 1 or not 0 (default)

    enum, optional[number, fixed]
Response
object
  • id
    Unique user identifier
    number, optional
    560
Request
object
  • email
    User email
    string, required
  • name
    User name
    string, required
  • isAdmin

    Indicates if the user is an admin 1 or not 0 (default)

    enum, optional[number, fixed]
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • email
    User email
    string, required
  • name
    User name
    string, required
  • isAdmin

    Indicates if the user is an admin 1 or not 0 (default)

    enum, optional[number, fixed]
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • email
    User email
    string, required
  • name
    User name
    string, required
  • isAdmin

    Indicates if the user is an admin 1 or not 0 (default)

    enum, optional[number, fixed]
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • email
    User email
    string, required
  • name
    User name
    string, required
  • isAdmin

    Indicates if the user is an admin 1 or not 0 (default)

    enum, optional[number, fixed]
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • email
    User email
    string, required
  • name
    User name
    string, required
  • isAdmin

    Indicates if the user is an admin 1 or not 0 (default)

    enum, optional[number, fixed]
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • email
    User email
    string, required
  • name
    User name
    string, required
  • isAdmin

    Indicates if the user is an admin 1 or not 0 (default)

    enum, optional[number, fixed]
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800
Request
object
  • email
    User email
    string, required
  • name
    User name
    string, required
  • isAdmin

    Indicates if the user is an admin 1 or not 0 (default)

    enum, optional[number, fixed]
Response
object
  • code
    string, required
  • description
    string, required

/api/3/users/{userId}

URI Parameters
userIdUnique user identifier

Get user's details

TokenKeyInHeader

This endpoint is available only if the authenticated user is an Admin.

Response
object
  • id
    Unique user identifier
    number, optional
    5740
  • name
    User name
    string, optional
    Arvo
  • email
    User email
    string, optional
    arvo@timeneye.com
  • enabled
    Indicate if the user is enabled 1 or deactivated 0
    enum, optional[number, fixed]
  • isAdmin
    Indicates if the user is an admin 1 or not 0
    enum, optional[number, fixed]
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800

Update user

TokenKeyInHeader

This endpoint is available only if the authenticated user is an Admin.

Request
object
  • name
    User name
    string, optional
  • email
    User email
    string, optional
  • isAdmin
    Indicates if the user is an admin 1 or not 0
    enum, optional[number, fixed]
Request
object
  • name
    User name
    string, optional
  • email
    User email
    string, optional
  • isAdmin
    Indicates if the user is an admin 1 or not 0
    enum, optional[number, fixed]
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • name
    User name
    string, optional
  • email
    User email
    string, optional
  • isAdmin
    Indicates if the user is an admin 1 or not 0
    enum, optional[number, fixed]
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • name
    User name
    string, optional
  • email
    User email
    string, optional
  • isAdmin
    Indicates if the user is an admin 1 or not 0
    enum, optional[number, fixed]
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • name
    User name
    string, optional
  • email
    User email
    string, optional
  • isAdmin
    Indicates if the user is an admin 1 or not 0
    enum, optional[number, fixed]
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • name
    User name
    string, optional
  • email
    User email
    string, optional
  • isAdmin
    Indicates if the user is an admin 1 or not 0
    enum, optional[number, fixed]
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • name
    User name
    string, optional
  • email
    User email
    string, optional
  • isAdmin
    Indicates if the user is an admin 1 or not 0
    enum, optional[number, fixed]
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800
Request
object
  • name
    User name
    string, optional
  • email
    User email
    string, optional
  • isAdmin
    Indicates if the user is an admin 1 or not 0
    enum, optional[number, fixed]
Response
object
  • code
    string, required
  • description
    string, required

Delete user

TokenKeyInHeader

This endpoint is available only if the authenticated user is an Admin. This action is irreversible and will delete permanently also all entries and timers linked to the given user.

Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800
Response
object
  • code
    string, required
  • description
    string, required

/api/3/users/{userId}/projects

URI Parameters
userIdThe user identification number ID

Get user's projects

TokenKeyInHeader

This endpoint is available only if the authenticated user is an Admin.

Response
object
  • projects
    array, optional
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800

Add user to project

TokenKeyInHeader

This endpoint is available only if the authenticated user is an Admin.

Request
object
  • projectId
    Unique project identifier
    number, optional
  • isPM
    Indicates if the user is a PM 1 or not 0
    enum, optional[number, fixed]
  • budgetHours
    The number of hours assigned to the user for this project
    number, optional
Request
object
  • projectId
    Unique project identifier
    number, optional
  • isPM
    Indicates if the user is a PM 1 or not 0
    enum, optional[number, fixed]
  • budgetHours
    The number of hours assigned to the user for this project
    number, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • projectId
    Unique project identifier
    number, optional
  • isPM
    Indicates if the user is a PM 1 or not 0
    enum, optional[number, fixed]
  • budgetHours
    The number of hours assigned to the user for this project
    number, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • projectId
    Unique project identifier
    number, optional
  • isPM
    Indicates if the user is a PM 1 or not 0
    enum, optional[number, fixed]
  • budgetHours
    The number of hours assigned to the user for this project
    number, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • projectId
    Unique project identifier
    number, optional
  • isPM
    Indicates if the user is a PM 1 or not 0
    enum, optional[number, fixed]
  • budgetHours
    The number of hours assigned to the user for this project
    number, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • projectId
    Unique project identifier
    number, optional
  • isPM
    Indicates if the user is a PM 1 or not 0
    enum, optional[number, fixed]
  • budgetHours
    The number of hours assigned to the user for this project
    number, optional
Response
object
  • code
    string, required
  • description
    string, required

/api/3/users/{userId}/projects/{projectId}

URI Parameters
userIdThe user identification number ID
projectIdThe Project identification number ID

Update user's project

TokenKeyInHeader

This endpoint is available only if the authenticated user is an Admin or PM of the given project.

Request
object
  • budgetHours
    The Total number of hours assigned to the user
    number, optional
  • isPM
    Indicates if the user is ether PM 1 or not 0
    enum, optional[number, fixed]
Request
object
  • budgetHours
    The Total number of hours assigned to the user
    number, optional
  • isPM
    Indicates if the user is ether PM 1 or not 0
    enum, optional[number, fixed]
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • budgetHours
    The Total number of hours assigned to the user
    number, optional
  • isPM
    Indicates if the user is ether PM 1 or not 0
    enum, optional[number, fixed]
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • budgetHours
    The Total number of hours assigned to the user
    number, optional
  • isPM
    Indicates if the user is ether PM 1 or not 0
    enum, optional[number, fixed]
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • budgetHours
    The Total number of hours assigned to the user
    number, optional
  • isPM
    Indicates if the user is ether PM 1 or not 0
    enum, optional[number, fixed]
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • budgetHours
    The Total number of hours assigned to the user
    number, optional
  • isPM
    Indicates if the user is ether PM 1 or not 0
    enum, optional[number, fixed]
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • budgetHours
    The Total number of hours assigned to the user
    number, optional
  • isPM
    Indicates if the user is ether PM 1 or not 0
    enum, optional[number, fixed]
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800
Request
object
  • budgetHours
    The Total number of hours assigned to the user
    number, optional
  • isPM
    Indicates if the user is ether PM 1 or not 0
    enum, optional[number, fixed]
Response
object
  • code
    string, required
  • description
    string, required

Remove user

TokenKeyInHeader

This endpoint is available only if the authenticated user is an Admin.

Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800

Entries


Entries related Endpoints visit Timeneye Vocabulary for moreinformation

/api/3/entries

Get entries list

TokenKeyInHeader
URI Parameters
dateFromStart date. If empty default is one week ago.
dateToEnd date
projectIdUnique project identifier
taskIdUnique phase identifier
taskCategoryIdUnique phase Category Id identifier
userIdUnique user identifier
limitLimit the number of entries to get.
offsetAn offset to start from. Number of entries to skip
clientId

Filter the entries based on a project id. If set to -2 it will filter for entries without a client

billed

It filters entries based on the billed status. It accepts 3 values. 0 for billable entries 1 for billed entries 2 for entries which are not billable (parent project not billable)

Response
object
  • entries
    array, optional
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800

Create a new entry

TokenKeyInHeader

If you want to create an entry with a different user than the authenticated one, the latter needs to be an Admin.

Request
object
  • projectId
    The project ID where the entry will be created
    number, required
  • taskId
    The phase ID where the entry will be created
    number, required
  • minutes
    entry minutes
    number, required
  • userId

    Unique user identifier, default the current authenticated user

    number, optional
  • entryDate

    When the entry was created. default today (UTC)

    string, optional
  • notes
    Some additional information or notes about the entry
    string, optional
  • taskCategoryId
    Unique phase Category Id identifier
    number, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • id
    Unique entry identifier
    number, optional
Request
object
  • projectId
    The project ID where the entry will be created
    number, required
  • taskId
    The phase ID where the entry will be created
    number, required
  • minutes
    entry minutes
    number, required
  • userId

    Unique user identifier, default the current authenticated user

    number, optional
  • entryDate

    When the entry was created. default today (UTC)

    string, optional
  • notes
    Some additional information or notes about the entry
    string, optional
  • taskCategoryId
    Unique phase Category Id identifier
    number, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • projectId
    The project ID where the entry will be created
    number, required
  • taskId
    The phase ID where the entry will be created
    number, required
  • minutes
    entry minutes
    number, required
  • userId

    Unique user identifier, default the current authenticated user

    number, optional
  • entryDate

    When the entry was created. default today (UTC)

    string, optional
  • notes
    Some additional information or notes about the entry
    string, optional
  • taskCategoryId
    Unique phase Category Id identifier
    number, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • projectId
    The project ID where the entry will be created
    number, required
  • taskId
    The phase ID where the entry will be created
    number, required
  • minutes
    entry minutes
    number, required
  • userId

    Unique user identifier, default the current authenticated user

    number, optional
  • entryDate

    When the entry was created. default today (UTC)

    string, optional
  • notes
    Some additional information or notes about the entry
    string, optional
  • taskCategoryId
    Unique phase Category Id identifier
    number, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • projectId
    The project ID where the entry will be created
    number, required
  • taskId
    The phase ID where the entry will be created
    number, required
  • minutes
    entry minutes
    number, required
  • userId

    Unique user identifier, default the current authenticated user

    number, optional
  • entryDate

    When the entry was created. default today (UTC)

    string, optional
  • notes
    Some additional information or notes about the entry
    string, optional
  • taskCategoryId
    Unique phase Category Id identifier
    number, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • projectId
    The project ID where the entry will be created
    number, required
  • taskId
    The phase ID where the entry will be created
    number, required
  • minutes
    entry minutes
    number, required
  • userId

    Unique user identifier, default the current authenticated user

    number, optional
  • entryDate

    When the entry was created. default today (UTC)

    string, optional
  • notes
    Some additional information or notes about the entry
    string, optional
  • taskCategoryId
    Unique phase Category Id identifier
    number, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • projectId
    The project ID where the entry will be created
    number, required
  • taskId
    The phase ID where the entry will be created
    number, required
  • minutes
    entry minutes
    number, required
  • userId

    Unique user identifier, default the current authenticated user

    number, optional
  • entryDate

    When the entry was created. default today (UTC)

    string, optional
  • notes
    Some additional information or notes about the entry
    string, optional
  • taskCategoryId
    Unique phase Category Id identifier
    number, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • projectId
    The project ID where the entry will be created
    number, required
  • taskId
    The phase ID where the entry will be created
    number, required
  • minutes
    entry minutes
    number, required
  • userId

    Unique user identifier, default the current authenticated user

    number, optional
  • entryDate

    When the entry was created. default today (UTC)

    string, optional
  • notes
    Some additional information or notes about the entry
    string, optional
  • taskCategoryId
    Unique phase Category Id identifier
    number, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800
Request
object
  • projectId
    The project ID where the entry will be created
    number, required
  • taskId
    The phase ID where the entry will be created
    number, required
  • minutes
    entry minutes
    number, required
  • userId

    Unique user identifier, default the current authenticated user

    number, optional
  • entryDate

    When the entry was created. default today (UTC)

    string, optional
  • notes
    Some additional information or notes about the entry
    string, optional
  • taskCategoryId
    Unique phase Category Id identifier
    number, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    string, required
  • description
    string, required

/api/3/entries/{entryId}

URI Parameters
entryIdUnique entry identifier

Update entry

TokenKeyInHeader

If you want to edit an entry with a different user than the authenticated one, the latter needs to be an Admin or PM of the entry's project.

Request
object
  • projectId
    The project ID
    number, optional
  • taskId
    The phase ID
    number, optional
  • minutes
    entry minutes
    number, optional
  • userId

    Unique user identifier, default the current authenticated user

    number, optional
  • entryDate

    When the entry was created. default today (UTC)

    string, optional
  • notes
    Some additional information or notes about the entry
    string, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Request
object
  • projectId
    The project ID
    number, optional
  • taskId
    The phase ID
    number, optional
  • minutes
    entry minutes
    number, optional
  • userId

    Unique user identifier, default the current authenticated user

    number, optional
  • entryDate

    When the entry was created. default today (UTC)

    string, optional
  • notes
    Some additional information or notes about the entry
    string, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • projectId
    The project ID
    number, optional
  • taskId
    The phase ID
    number, optional
  • minutes
    entry minutes
    number, optional
  • userId

    Unique user identifier, default the current authenticated user

    number, optional
  • entryDate

    When the entry was created. default today (UTC)

    string, optional
  • notes
    Some additional information or notes about the entry
    string, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • projectId
    The project ID
    number, optional
  • taskId
    The phase ID
    number, optional
  • minutes
    entry minutes
    number, optional
  • userId

    Unique user identifier, default the current authenticated user

    number, optional
  • entryDate

    When the entry was created. default today (UTC)

    string, optional
  • notes
    Some additional information or notes about the entry
    string, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • projectId
    The project ID
    number, optional
  • taskId
    The phase ID
    number, optional
  • minutes
    entry minutes
    number, optional
  • userId

    Unique user identifier, default the current authenticated user

    number, optional
  • entryDate

    When the entry was created. default today (UTC)

    string, optional
  • notes
    Some additional information or notes about the entry
    string, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • projectId
    The project ID
    number, optional
  • taskId
    The phase ID
    number, optional
  • minutes
    entry minutes
    number, optional
  • userId

    Unique user identifier, default the current authenticated user

    number, optional
  • entryDate

    When the entry was created. default today (UTC)

    string, optional
  • notes
    Some additional information or notes about the entry
    string, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • projectId
    The project ID
    number, optional
  • taskId
    The phase ID
    number, optional
  • minutes
    entry minutes
    number, optional
  • userId

    Unique user identifier, default the current authenticated user

    number, optional
  • entryDate

    When the entry was created. default today (UTC)

    string, optional
  • notes
    Some additional information or notes about the entry
    string, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • projectId
    The project ID
    number, optional
  • taskId
    The phase ID
    number, optional
  • minutes
    entry minutes
    number, optional
  • userId

    Unique user identifier, default the current authenticated user

    number, optional
  • entryDate

    When the entry was created. default today (UTC)

    string, optional
  • notes
    Some additional information or notes about the entry
    string, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800
Request
object
  • projectId
    The project ID
    number, optional
  • taskId
    The phase ID
    number, optional
  • minutes
    entry minutes
    number, optional
  • userId

    Unique user identifier, default the current authenticated user

    number, optional
  • entryDate

    When the entry was created. default today (UTC)

    string, optional
  • notes
    Some additional information or notes about the entry
    string, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    string, required
  • description
    string, required

Delete entry

TokenKeyInHeader

If you want to delete an entry with a different user than the authenticated one, the latter needs to be an Admin or PM of the entry's project.

Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800
Response
object
  • code
    string, required
  • description
    string, required

Timers


Timers related Endpoints visit Timeneye Vocabulary for moreinformation

/api/3/timers

Get timers list

TokenKeyInHeader

Returns the authenticated users's timers.

Response
object
  • timers
    array, optional
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800

Start timer

TokenKeyInHeader

Starts a new timer for the authenticated user.

Request
object
  • projectId
    unique project identifier
    number, required
  • taskId
    unique phase identifier
    number, required
  • seconds
    The seconds already counted.
    number, optional
  • notes
    Some additional information or notes about the timer
    string, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • id
    number, optional
    1768
Request
object
  • projectId
    unique project identifier
    number, required
  • taskId
    unique phase identifier
    number, required
  • seconds
    The seconds already counted.
    number, optional
  • notes
    Some additional information or notes about the timer
    string, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • projectId
    unique project identifier
    number, required
  • taskId
    unique phase identifier
    number, required
  • seconds
    The seconds already counted.
    number, optional
  • notes
    Some additional information or notes about the timer
    string, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • projectId
    unique project identifier
    number, required
  • taskId
    unique phase identifier
    number, required
  • seconds
    The seconds already counted.
    number, optional
  • notes
    Some additional information or notes about the timer
    string, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • projectId
    unique project identifier
    number, required
  • taskId
    unique phase identifier
    number, required
  • seconds
    The seconds already counted.
    number, optional
  • notes
    Some additional information or notes about the timer
    string, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • projectId
    unique project identifier
    number, required
  • taskId
    unique phase identifier
    number, required
  • seconds
    The seconds already counted.
    number, optional
  • notes
    Some additional information or notes about the timer
    string, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • projectId
    unique project identifier
    number, required
  • taskId
    unique phase identifier
    number, required
  • seconds
    The seconds already counted.
    number, optional
  • notes
    Some additional information or notes about the timer
    string, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • projectId
    unique project identifier
    number, required
  • taskId
    unique phase identifier
    number, required
  • seconds
    The seconds already counted.
    number, optional
  • notes
    Some additional information or notes about the timer
    string, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800
Request
object
  • projectId
    unique project identifier
    number, required
  • taskId
    unique phase identifier
    number, required
  • seconds
    The seconds already counted.
    number, optional
  • notes
    Some additional information or notes about the timer
    string, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    string, required
  • description
    string, required

/api/3/timers/{timerId}

URI Parameters
timerId

Update a timer

TokenKeyInHeader

Only timers of the authenticated user can be edited.

Request
object
  • projectId
    unique project identifier
    number, optional
  • taskId
    unique phase identifier
    number, optional
  • seconds
    The seconds to count
    number, optional
  • notes
    Some additional information or notes about the timer
    string, optional
  • timerDate
    The timer date
    string, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Request
object
  • projectId
    unique project identifier
    number, optional
  • taskId
    unique phase identifier
    number, optional
  • seconds
    The seconds to count
    number, optional
  • notes
    Some additional information or notes about the timer
    string, optional
  • timerDate
    The timer date
    string, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • projectId
    unique project identifier
    number, optional
  • taskId
    unique phase identifier
    number, optional
  • seconds
    The seconds to count
    number, optional
  • notes
    Some additional information or notes about the timer
    string, optional
  • timerDate
    The timer date
    string, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • projectId
    unique project identifier
    number, optional
  • taskId
    unique phase identifier
    number, optional
  • seconds
    The seconds to count
    number, optional
  • notes
    Some additional information or notes about the timer
    string, optional
  • timerDate
    The timer date
    string, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • projectId
    unique project identifier
    number, optional
  • taskId
    unique phase identifier
    number, optional
  • seconds
    The seconds to count
    number, optional
  • notes
    Some additional information or notes about the timer
    string, optional
  • timerDate
    The timer date
    string, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • projectId
    unique project identifier
    number, optional
  • taskId
    unique phase identifier
    number, optional
  • seconds
    The seconds to count
    number, optional
  • notes
    Some additional information or notes about the timer
    string, optional
  • timerDate
    The timer date
    string, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    string, required
  • description
    string, required
Request
object
  • projectId
    unique project identifier
    number, optional
  • taskId
    unique phase identifier
    number, optional
  • seconds
    The seconds to count
    number, optional
  • notes
    Some additional information or notes about the timer
    string, optional
  • timerDate
    The timer date
    string, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800
Request
object
  • projectId
    unique project identifier
    number, optional
  • taskId
    unique phase identifier
    number, optional
  • seconds
    The seconds to count
    number, optional
  • notes
    Some additional information or notes about the timer
    string, optional
  • timerDate
    The timer date
    string, optional
  • tagId

    json encode of the tag ids' list

    string, optional
Response
object
  • code
    string, required
  • description
    string, required

Delete timer

TokenKeyInHeader

Only timers of the authenticated user can be deleted.

Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800
Response
object
  • code
    string, required
  • description
    string, required

Save timer as an entry

TokenKeyInHeader

Stops (if running) a timer and stores it as an entry.

Only timers of the authenticated user can be saved.

Response
object
  • id
    unique entry identifier
    number, optional
    637
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800
Response
object
  • code
    string, required
  • description
    string, required

Clients


Clients related Endpoints visit Timeneye Vocabulary for moreinformation

/api/3/clients

Get client list

TokenKeyInHeader

Returns the list of clients in the authenticated user workspace. This endpoint is available only if the authenticated user is an Admin.

Response
object
  • clients
    array, optional
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800

Phase categories


Phase categories related Endpoints visit Timeneye Vocabulary for more information

/api/3/taskcategories

Get phase categories list

TokenKeyInHeader

Returns the list of phase categories in the authenticated user workspace. This endpoint is available only if the authenticated user is an Admin.

Response
object
  • categories
    array, optional
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    Error code
    string, optional
  • description
    The error message
    string, optional
  • nextRefresh

    Timestamp (in seconds) of when the current limits will be refreshed (generealy once per 5 minutes)

    number, optional
    1514800800

Tags


/api/3/taglists

Get tag lists list

TokenKeyInHeader

Returns the list of tag lists in the authenticated user workspace.

Response
object
  • tagLists
    array, optional
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required

/api/3/taglists/{tagListId}

URI Parameters
tagListId

Get tag list

TokenKeyInHeader

Returns the given tag list in the authenticated user workspace.

Response
object
  • id
    unique tag list identifier
    number, required
    12
  • name
    tag list name
    string, required
    Arvo's Tag list
  • color

    color of the tags chip's for this tag list

    string, required
  • textColor
    color of the tags text for this tag list
    string, required
  • tags
    list of tags that the tag list contains
    array, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required
Response
object
  • code
    string, required
  • description
    string, required

Data Structures

definitions/projectSingle
object
  • id
    project unique identifier
    number, required
    25
  • name
    Project name
    string, required
    Arvo's project
  • isActive
    tells if the project is active 1 or not 0
    enum, required[number, fixed]
  • clientId
    Visible by PMs only
    number, optional
    25
  • clientName
    Client name. Visible by PMs only
    string, optional
    Axion
  • isBillable
    Indicate if the project is ether Billable 1 or not 0
    enum, optional[number, fixed]
  • hourlyRate

    The hourly Price. Visible by PM only.

    • Value must be of format 'float'
    number, optional
    20.6
  • budgetMinutes
    Indicates the project budget mintes
    number, optional
    360
  • totalMinutes

    Indicates the project's total spent minutes.

    number, optional
    120
definitions/task
object
  • id
    The unique identifier of the phase.
    number, required
    607
  • name
    The name of the phase
    string, required
    Phase's name
  • isOpen

    Tells if the phase is either open or closed. 1 - open 0 - closed

    enum, required[number, fixed]
  • categoryId
    The id of the phase category.
    number, required
    74
  • categoryName
    The name of the category
    string, required
    category name
  • budgetMinutes

    The budget minutes for the phase. It's only visible to PMs

    number, optional
    120
definitions/error
object
  • code
    string, required
  • description
    string, required
definitions/userInList
object
  • id
    Unique user identifier
    number, required
    127
  • name
    The Name of the user
    string, required
    arvo
  • isPM
    If 1 the user is a PM of this project
    enum, required[number, fixed]
  • budgetMinutes

    The total Time budget (in minutes) assigned to the user. It's only visible to PMs

    string, optional
    Sample: 120
definitions/entryInList
object
  • id
    Unique entry identifier
    number, optional
    16
  • entryDate
    Date the entry was created on
    string, optional
    2013-01-31
  • projectId
    Unique project identifier
    number, optional
    260
  • projectName
    Project name
    string, optional
    Arvo's project
  • userId
    Unique user identifier
    number, optional
    180
  • userName
    User name
    string, optional
    Arvo
  • taskId
    Unique phase identifier
    number, optional
    197
  • taskName
    phase name
    string, optional
    Define variables names
  • notes
    Notes
    string, optional
    camelCase or snake_case?
  • minutes
    The entrie duration in Minutes
    number, optional
    480
  • billed
    Indicates if the Entry has been billed 1 or not 0
    enum, optional[number, fixed]
  • locked
    Indicates if the Entry is locked 1 or not 0
    enum, optional[number, fixed]
  • clientId
    The unique identification name of the client
    number, optional
    17
  • clientName
    The name of the client
    string, optional
    axion
  • taskCategoryName
    The name of the task category
    string, optional
    My Category name
  • taskCategoryId
    Unique phase Category Id identifier
    number, optional
    10
definitions/authorizationObject
object
  • accessToken
    string, optional
  • refreshToken
    string, optional
  • expiration
    string, optional