Time tracking events API
Create a time tracking event for a requirement
POST /api/v1/requirements/:requirement_id/time_tracking_events
Name | Description |
---|---|
occurred_on | The timestamp of when the time tracking event occurred on |
work_done_text | The text representation of how much work was done (e.g. 1d 2h) |
remaining_estimate_text | The text representation of how much work is left (e.g. 3d 1h) |
remaining_automatic | Whether or not to automatically calculate the remaining estimate |
Example request
POST /api/v1/requirements/483368544/time_tracking_events
Example CURL command
curl "https://company.aha.io/api/v1/requirements/483368544/time_tracking_events" -d '{"time_tracking_event":{"user_id":689956296,"work_done_text":"2h"}}' -X POST \
-H "Authorization: Bearer 15b60d42d4bc417284a246ced6877b0bf13fb4aca415f7b55f7006bc3694a8ab" \
-H "Content-Type: application/json" \
-H "Accept: application/json"
Request
authorization: Bearer 15b60d42d4bc417284a246ced6877b0bf13fb4aca415f7b55f7006bc3694a8ab
contentType: application/json
accept: application/json
Request body
Response
Status: 200 OK
contentType: application/json; charset=utf-8
Response body