GET/projects/api/v3/projects/metrics/billable.json

Get the total billable time per project

Returns the total billable time of all projects that the logged-in user has access.

Query Params

  • Name
    startDate
    Type
    string
    Description
  • Name
    orderMode
    Type
    string
    Description

    order mode

    Default
    desc
    Allowed values
    • asc
    • desc
  • Name
    endDate
    Type
    string
    Description

Responses

  • Code
    200
    Type
    object
    Schema
    Description
    200 OK
    ProjectMetricBillablesResponse contains information about a group of billables.
  • Code
    400
    Type
    object
    Schema
    Description
    400 Bad Request
    ErrorResponse defines how []Error should be marshaled to JSON.

Examples

200 OK

ProjectMetricBillablesResponse
{
  "data": [
    {
      "name": "string",
      "value": 0
    }
  ]
}