Skip to main content
GET
/
tasks
/
{task_id}
/
billing
Get Task Billing
curl --request GET \
  --url https://api.everhour.com/tasks/{task_id}/billing \
  --header 'X-Api-Key: <api-key>'
{
  "id": "ev:9876543210",
  "name": "Task Name",
  "projects": [
    "ev:1234567890"
  ],
  "status": "open",
  "time": {
    "total": 7200,
    "users": {
      "1304": 3600,
      "1543": 3600
    }
  },
  "estimate": {
    "total": 7200,
    "type": "overall",
    "users": {
      "1304": 3600,
      "1543": 3600
    }
  },
  "unbillable": true,
  "billing": {
    "billable": true,
    "amount": 16000
  }
}

Authorizations

X-Api-Key
string
header
required

Path Parameters

task_id
string
required

Query Parameters

opts_include_billing
integer
Example:

1

Response

OK

id
string
required
Example:

"ev:9876543210"

name
string
required
Example:

"Task Name"

projects
string[]
required

List of projects ID

Example:
["ev:1234567890"]
status
enum<string>
Available options:
open,
closed
Example:

"open"

time
object
estimate
object
unbillable
boolean
billing
object