API Documentation
Time Entries - Bulk ¶
Time Entries - Bulk ¶
The Time Entries Bulk endpoint enables efficient management of multiple time entries simultaneously. This API provides bulk operations for creating, updating, deleting, and managing approval state for time entries.
Available Actions
-
Create
-
Update
-
Delete
-
Approve
-
Unapprove
POST /api/v2/time_entries
Requests
POST /api/v2/time_entries
Headers
Accept: application/vnd.api+json; ext=bulk
Content-Type: application/vnd.api+json; ext=bulkBody
{
"data": [
{
"type": "time_entries",
"attributes": {
"note": "first note",
"date": "2024-08-28",
"time": 120
},
"relationships": {
"person": {
"data": {
"type": "people",
"id": "7781"
}
},
"service": {
"data": {
"type": "services",
"id": "1213"
}
},
"task": {
"data": {
"type": "tasks",
"id": "302"
}
}
}
},
{
"type": "time_entries",
"attributes": {
"note": "second note",
"date": "2024-08-28",
"time": 120
},
"relationships": {
"person": {
"data": {
"type": "people",
"id": "7781"
}
},
"service": {
"data": {
"type": "services",
"id": "1213"
}
},
"task": {
"data": {
"type": "tasks",
"id": "302"
}
}
}
}
]
}Responses
Headers
Content-Type: application/vnd.api+json; charset=utf-8Body
{
"data": [
{
"id": "221",
"type": "time_entries",
"attributes": {
"date": "2024-08-28",
"created_at": "2026-03-17T05:18:44.009+01:00",
"time": 120,
"billable_time": 120,
"recognized_time": 0,
"note": "first note",
"track_method_id": 1,
"started_at": null,
"timer_started_at": null,
"timer_stopped_at": null,
"approved": false,
"approved_at": null,
"updated_at": "2026-03-17T05:18:44.009+01:00",
"calendar_event_id": null,
"invoice_attribution_id": null,
"invoiced": false,
"overhead": true,
"rejected": false,
"rejected_reason": null,
"rejected_at": null,
"last_activity_at": "2026-03-17T05:18:44.009+01:00",
"submitted": false,
"currency": "EUR",
"currency_default": "USD",
"currency_normalized": "EUR",
"cost": 4000,
"cost_default": 5000,
"cost_normalized": 4000,
"work_cost": 4000,
"work_cost_default": 5000,
"work_cost_normalized": 4000,
"overhead_cost": 0,
"overhead_cost_default": 0,
"overhead_cost_normalized": 0,
"internal_overhead_cost": 0,
"internal_overhead_cost_default": 0,
"internal_overhead_cost_normalized": 0,
"facility_overhead_cost": 0,
"facility_overhead_cost_default": 0,
"facility_overhead_cost_normalized": 0
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "2110"
}
},
"person": {
"meta": {
"included": false
}
},
"service": {
"meta": {
"included": false
}
},
"task": {
"meta": {
"included": false
}
},
"approver": {
"meta": {
"included": false
}
},
"updater": {
"meta": {
"included": false
}
},
"rejecter": {
"meta": {
"included": false
}
},
"creator": {
"meta": {
"included": false
}
},
"last_actor": {
"meta": {
"included": false
}
},
"person_subsidiary": {
"meta": {
"included": false
}
},
"deal_subsidiary": {
"meta": {
"included": false
}
},
"timesheet": {
"meta": {
"included": false
}
},
"invoice_attribution": {
"meta": {
"included": false
}
},
"approval_statuses": {
"meta": {
"included": false
}
}
}
},
{
"id": "222",
"type": "time_entries",
"attributes": {
"date": "2024-08-28",
"created_at": "2026-03-17T05:18:44.046+01:00",
"time": 120,
"billable_time": 120,
"recognized_time": 0,
"note": "second note",
"track_method_id": 1,
"started_at": null,
"timer_started_at": null,
"timer_stopped_at": null,
"approved": false,
"approved_at": null,
"updated_at": "2026-03-17T05:18:44.046+01:00",
"calendar_event_id": null,
"invoice_attribution_id": null,
"invoiced": false,
"overhead": true,
"rejected": false,
"rejected_reason": null,
"rejected_at": null,
"last_activity_at": "2026-03-17T05:18:44.046+01:00",
"submitted": false,
"currency": "EUR",
"currency_default": "USD",
"currency_normalized": "EUR",
"cost": 4000,
"cost_default": 5000,
"cost_normalized": 4000,
"work_cost": 4000,
"work_cost_default": 5000,
"work_cost_normalized": 4000,
"overhead_cost": 0,
"overhead_cost_default": 0,
"overhead_cost_normalized": 0,
"internal_overhead_cost": 0,
"internal_overhead_cost_default": 0,
"internal_overhead_cost_normalized": 0,
"facility_overhead_cost": 0,
"facility_overhead_cost_default": 0,
"facility_overhead_cost_normalized": 0
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "2110"
}
},
"person": {
"meta": {
"included": false
}
},
"service": {
"meta": {
"included": false
}
},
"task": {
"meta": {
"included": false
}
},
"approver": {
"meta": {
"included": false
}
},
"updater": {
"meta": {
"included": false
}
},
"rejecter": {
"meta": {
"included": false
}
},
"creator": {
"meta": {
"included": false
}
},
"last_actor": {
"meta": {
"included": false
}
},
"person_subsidiary": {
"meta": {
"included": false
}
},
"deal_subsidiary": {
"meta": {
"included": false
}
},
"timesheet": {
"meta": {
"included": false
}
},
"invoice_attribution": {
"meta": {
"included": false
}
},
"approval_statuses": {
"meta": {
"included": false
}
}
}
}
],
"meta": {}
}Create time entriesPOST/api/v2/time_entries
URI Parameters
- date
date(required) Example: 2018-01-01date
- service_id
number(required) Example: 1service id
- person_id
number(required) Example: 1person id
- task_id
number(optional) Example: 1task id
- note
string(optional) Example: Notenote
- time
number(optional) Example: 60time in minutes
PATCH /api/v2/time_entries
Requests
PATCH /api/v2/time_entries
Headers
Accept: application/vnd.api+json; ext=bulk
Content-Type: application/vnd.api+json; ext=bulkBody
{
"data": [
{
"id": 223,
"type": "time_entries",
"attributes": {
"note": "new first note"
}
},
{
"id": 224,
"type": "time_entries",
"attributes": {
"note": "new second note"
}
}
]
}Responses
Headers
Content-Type: application/vnd.api+json; charset=utf-8Body
{
"data": [
{
"id": "223",
"type": "time_entries",
"attributes": {
"date": "2016-10-01",
"created_at": "2026-03-17T05:18:44.540+01:00",
"time": 480,
"billable_time": 480,
"recognized_time": 0,
"note": "new first note",
"track_method_id": 1,
"started_at": null,
"timer_started_at": null,
"timer_stopped_at": null,
"approved": false,
"approved_at": null,
"updated_at": "2026-03-17T05:18:44.640+01:00",
"calendar_event_id": null,
"invoice_attribution_id": null,
"invoiced": false,
"overhead": true,
"rejected": false,
"rejected_reason": null,
"rejected_at": null,
"last_activity_at": "2026-03-17T05:18:44.540+01:00",
"submitted": false,
"currency": "EUR",
"currency_default": "USD",
"currency_normalized": "EUR",
"cost": 16000,
"cost_default": 20000,
"cost_normalized": 16000,
"work_cost": 16000,
"work_cost_default": 20000,
"work_cost_normalized": 16000,
"overhead_cost": 0,
"overhead_cost_default": 0,
"overhead_cost_normalized": 0,
"internal_overhead_cost": 0,
"internal_overhead_cost_default": 0,
"internal_overhead_cost_normalized": 0,
"facility_overhead_cost": 0,
"facility_overhead_cost_default": 0,
"facility_overhead_cost_normalized": 0
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "2111"
}
},
"person": {
"meta": {
"included": false
}
},
"service": {
"meta": {
"included": false
}
},
"task": {
"meta": {
"included": false
}
},
"approver": {
"meta": {
"included": false
}
},
"updater": {
"meta": {
"included": false
}
},
"rejecter": {
"meta": {
"included": false
}
},
"creator": {
"meta": {
"included": false
}
},
"last_actor": {
"meta": {
"included": false
}
},
"person_subsidiary": {
"meta": {
"included": false
}
},
"deal_subsidiary": {
"meta": {
"included": false
}
},
"timesheet": {
"meta": {
"included": false
}
},
"invoice_attribution": {
"meta": {
"included": false
}
},
"approval_statuses": {
"meta": {
"included": false
}
}
}
},
{
"id": "224",
"type": "time_entries",
"attributes": {
"date": "2016-10-01",
"created_at": "2026-03-17T05:18:44.566+01:00",
"time": 480,
"billable_time": 480,
"recognized_time": 0,
"note": "new second note",
"track_method_id": 1,
"started_at": null,
"timer_started_at": null,
"timer_stopped_at": null,
"approved": false,
"approved_at": null,
"updated_at": "2026-03-17T05:18:44.667+01:00",
"calendar_event_id": null,
"invoice_attribution_id": null,
"invoiced": false,
"overhead": true,
"rejected": false,
"rejected_reason": null,
"rejected_at": null,
"last_activity_at": "2026-03-17T05:18:44.566+01:00",
"submitted": false,
"currency": "EUR",
"currency_default": "USD",
"currency_normalized": "EUR",
"cost": 16000,
"cost_default": 20000,
"cost_normalized": 16000,
"work_cost": 16000,
"work_cost_default": 20000,
"work_cost_normalized": 16000,
"overhead_cost": 0,
"overhead_cost_default": 0,
"overhead_cost_normalized": 0,
"internal_overhead_cost": 0,
"internal_overhead_cost_default": 0,
"internal_overhead_cost_normalized": 0,
"facility_overhead_cost": 0,
"facility_overhead_cost_default": 0,
"facility_overhead_cost_normalized": 0
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "2111"
}
},
"person": {
"meta": {
"included": false
}
},
"service": {
"meta": {
"included": false
}
},
"task": {
"meta": {
"included": false
}
},
"approver": {
"meta": {
"included": false
}
},
"updater": {
"meta": {
"included": false
}
},
"rejecter": {
"meta": {
"included": false
}
},
"creator": {
"meta": {
"included": false
}
},
"last_actor": {
"meta": {
"included": false
}
},
"person_subsidiary": {
"meta": {
"included": false
}
},
"deal_subsidiary": {
"meta": {
"included": false
}
},
"timesheet": {
"meta": {
"included": false
}
},
"invoice_attribution": {
"meta": {
"included": false
}
},
"approval_statuses": {
"meta": {
"included": false
}
}
}
}
],
"meta": {}
}Update time entriesPATCH/api/v2/time_entries
URI Parameters
- date
date(required) Example: 2018-01-01date
- service_id
number(required) Example: 1service id
- person_id
number(required) Example: 1person id
- task_id
number(optional) Example: 1task id
- note
string(optional) Example: Notenote
- time
number(optional) Example: 60time in minutes
DELETE /api/v2/time_entries
Requests
DELETE /api/v2/time_entries
Headers
Accept: application/vnd.api+json; ext=bulk
Content-Type: application/vnd.api+json; ext=bulkBody
{
"data": [
{
"id": 231,
"type": "time_entries"
},
{
"id": 232,
"type": "time_entries"
}
]
}Responses
This response has no content.
Deletes time entriesDELETE/api/v2/time_entries
URI Parameters
- id
number(required) Example: 1time_entry id
PATCH /api/v2/time_entries/approve
Requests
PATCH /api/v2/time_entries/approve
Headers
Accept: application/vnd.api+json; ext=bulk
Content-Type: application/vnd.api+json; ext=bulkBody
{
"data": [
{
"id": 235,
"type": "time_entries"
},
{
"id": 236,
"type": "time_entries"
}
]
}Responses
Headers
Content-Type: application/vnd.api+json; charset=utf-8Body
{
"data": [
{
"id": "235",
"type": "time_entries",
"attributes": {
"date": "2016-10-01",
"created_at": "2026-03-17T05:18:51.311+01:00",
"time": 480,
"billable_time": 480,
"recognized_time": 0,
"note": "one",
"track_method_id": 1,
"started_at": null,
"timer_started_at": null,
"timer_stopped_at": null,
"approved": true,
"approved_at": "2026-03-17T05:18:51.000+01:00",
"updated_at": "2026-03-17T05:18:51.522+01:00",
"calendar_event_id": null,
"invoice_attribution_id": null,
"invoiced": false,
"overhead": true,
"rejected": false,
"rejected_reason": null,
"rejected_at": null,
"last_activity_at": "2026-03-17T05:18:51.311+01:00",
"submitted": false,
"currency": "EUR",
"currency_default": "USD",
"currency_normalized": "EUR",
"cost": 16000,
"cost_default": 20000,
"cost_normalized": 16000,
"work_cost": 16000,
"work_cost_default": 20000,
"work_cost_normalized": 16000,
"overhead_cost": 0,
"overhead_cost_default": 0,
"overhead_cost_normalized": 0,
"internal_overhead_cost": 0,
"internal_overhead_cost_default": 0,
"internal_overhead_cost_normalized": 0,
"facility_overhead_cost": 0,
"facility_overhead_cost_default": 0,
"facility_overhead_cost_normalized": 0
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "2117"
}
},
"person": {
"meta": {
"included": false
}
},
"service": {
"meta": {
"included": false
}
},
"task": {
"meta": {
"included": false
}
},
"approver": {
"meta": {
"included": false
}
},
"updater": {
"meta": {
"included": false
}
},
"rejecter": {
"meta": {
"included": false
}
},
"creator": {
"meta": {
"included": false
}
},
"last_actor": {
"meta": {
"included": false
}
},
"person_subsidiary": {
"meta": {
"included": false
}
},
"deal_subsidiary": {
"meta": {
"included": false
}
},
"timesheet": {
"meta": {
"included": false
}
},
"invoice_attribution": {
"meta": {
"included": false
}
},
"approval_statuses": {
"meta": {
"included": false
}
}
}
},
{
"id": "236",
"type": "time_entries",
"attributes": {
"date": "2016-10-01",
"created_at": "2026-03-17T05:18:51.344+01:00",
"time": 480,
"billable_time": 480,
"recognized_time": 0,
"note": "two",
"track_method_id": 1,
"started_at": null,
"timer_started_at": null,
"timer_stopped_at": null,
"approved": false,
"approved_at": null,
"updated_at": "2026-03-17T05:18:51.521+01:00",
"calendar_event_id": null,
"invoice_attribution_id": null,
"invoiced": false,
"overhead": true,
"rejected": false,
"rejected_reason": null,
"rejected_at": null,
"last_activity_at": "2026-03-17T05:18:51.344+01:00",
"submitted": false,
"currency": "EUR",
"currency_default": "USD",
"currency_normalized": "EUR",
"cost": 16000,
"cost_default": 20000,
"cost_normalized": 16000,
"work_cost": 16000,
"work_cost_default": 20000,
"work_cost_normalized": 16000,
"overhead_cost": 0,
"overhead_cost_default": 0,
"overhead_cost_normalized": 0,
"internal_overhead_cost": 0,
"internal_overhead_cost_default": 0,
"internal_overhead_cost_normalized": 0,
"facility_overhead_cost": 0,
"facility_overhead_cost_default": 0,
"facility_overhead_cost_normalized": 0
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "2117"
}
},
"person": {
"meta": {
"included": false
}
},
"service": {
"meta": {
"included": false
}
},
"task": {
"meta": {
"included": false
}
},
"approver": {
"meta": {
"included": false
}
},
"updater": {
"meta": {
"included": false
}
},
"rejecter": {
"meta": {
"included": false
}
},
"creator": {
"meta": {
"included": false
}
},
"last_actor": {
"meta": {
"included": false
}
},
"person_subsidiary": {
"meta": {
"included": false
}
},
"deal_subsidiary": {
"meta": {
"included": false
}
},
"timesheet": {
"meta": {
"included": false
}
},
"invoice_attribution": {
"meta": {
"included": false
}
},
"approval_statuses": {
"meta": {
"included": false
}
}
}
}
],
"meta": {}
}PATCH /api/v2/time_entries/approve
Headers
Accept: application/vnd.api+json; ext=bulk
Content-Type: application/vnd.api+json; ext=bulkBody
{
"for_all_approvers": true,
"data": [
{
"id": 237,
"type": "time_entries"
},
{
"id": 238,
"type": "time_entries"
}
]
}Responses
Headers
Content-Type: application/vnd.api+json; charset=utf-8Body
{
"data": [
{
"id": "237",
"type": "time_entries",
"attributes": {
"date": "2016-10-01",
"created_at": "2026-03-17T05:18:52.078+01:00",
"time": 480,
"billable_time": 480,
"recognized_time": 0,
"note": "one",
"track_method_id": 1,
"started_at": null,
"timer_started_at": null,
"timer_stopped_at": null,
"approved": true,
"approved_at": "2026-03-17T05:18:52.000+01:00",
"updated_at": "2026-03-17T05:18:52.263+01:00",
"calendar_event_id": null,
"invoice_attribution_id": null,
"invoiced": false,
"overhead": true,
"rejected": false,
"rejected_reason": null,
"rejected_at": null,
"last_activity_at": "2026-03-17T05:18:52.078+01:00",
"submitted": false,
"currency": "EUR",
"currency_default": "USD",
"currency_normalized": "EUR",
"cost": 16000,
"cost_default": 20000,
"cost_normalized": 16000,
"work_cost": 16000,
"work_cost_default": 20000,
"work_cost_normalized": 16000,
"overhead_cost": 0,
"overhead_cost_default": 0,
"overhead_cost_normalized": 0,
"internal_overhead_cost": 0,
"internal_overhead_cost_default": 0,
"internal_overhead_cost_normalized": 0,
"facility_overhead_cost": 0,
"facility_overhead_cost_default": 0,
"facility_overhead_cost_normalized": 0
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "2118"
}
},
"person": {
"meta": {
"included": false
}
},
"service": {
"meta": {
"included": false
}
},
"task": {
"meta": {
"included": false
}
},
"approver": {
"meta": {
"included": false
}
},
"updater": {
"meta": {
"included": false
}
},
"rejecter": {
"meta": {
"included": false
}
},
"creator": {
"meta": {
"included": false
}
},
"last_actor": {
"meta": {
"included": false
}
},
"person_subsidiary": {
"meta": {
"included": false
}
},
"deal_subsidiary": {
"meta": {
"included": false
}
},
"timesheet": {
"meta": {
"included": false
}
},
"invoice_attribution": {
"meta": {
"included": false
}
},
"approval_statuses": {
"meta": {
"included": false
}
}
}
},
{
"id": "238",
"type": "time_entries",
"attributes": {
"date": "2016-10-01",
"created_at": "2026-03-17T05:18:52.103+01:00",
"time": 480,
"billable_time": 480,
"recognized_time": 0,
"note": "two",
"track_method_id": 1,
"started_at": null,
"timer_started_at": null,
"timer_stopped_at": null,
"approved": true,
"approved_at": "2026-03-17T05:18:52.000+01:00",
"updated_at": "2026-03-17T05:18:52.263+01:00",
"calendar_event_id": null,
"invoice_attribution_id": null,
"invoiced": false,
"overhead": true,
"rejected": false,
"rejected_reason": null,
"rejected_at": null,
"last_activity_at": "2026-03-17T05:18:52.103+01:00",
"submitted": false,
"currency": "EUR",
"currency_default": "USD",
"currency_normalized": "EUR",
"cost": 16000,
"cost_default": 20000,
"cost_normalized": 16000,
"work_cost": 16000,
"work_cost_default": 20000,
"work_cost_normalized": 16000,
"overhead_cost": 0,
"overhead_cost_default": 0,
"overhead_cost_normalized": 0,
"internal_overhead_cost": 0,
"internal_overhead_cost_default": 0,
"internal_overhead_cost_normalized": 0,
"facility_overhead_cost": 0,
"facility_overhead_cost_default": 0,
"facility_overhead_cost_normalized": 0
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "2118"
}
},
"person": {
"meta": {
"included": false
}
},
"service": {
"meta": {
"included": false
}
},
"task": {
"meta": {
"included": false
}
},
"approver": {
"meta": {
"included": false
}
},
"updater": {
"meta": {
"included": false
}
},
"rejecter": {
"meta": {
"included": false
}
},
"creator": {
"meta": {
"included": false
}
},
"last_actor": {
"meta": {
"included": false
}
},
"person_subsidiary": {
"meta": {
"included": false
}
},
"deal_subsidiary": {
"meta": {
"included": false
}
},
"timesheet": {
"meta": {
"included": false
}
},
"invoice_attribution": {
"meta": {
"included": false
}
},
"approval_statuses": {
"meta": {
"included": false
}
}
}
}
],
"meta": {}
}Approves time entriesPATCH/api/v2/time_entries/approve
URI Parameters
- id
number(required) Example: 1time_entry id
PATCH /api/v2/time_entries/unapprove
Requests
PATCH /api/v2/time_entries/unapprove
Headers
Accept: application/vnd.api+json; ext=bulk
Content-Type: application/vnd.api+json; ext=bulkBody
{
"data": [
{
"id": 249,
"type": "time_entries"
},
{
"id": 250,
"type": "time_entries"
}
]
}Responses
Headers
Content-Type: application/vnd.api+json; charset=utf-8Body
{
"data": [
{
"id": "249",
"type": "time_entries",
"attributes": {
"date": "2016-10-01",
"created_at": "2026-03-17T05:19:02.615+01:00",
"time": 480,
"billable_time": 480,
"recognized_time": 0,
"note": "one",
"track_method_id": 1,
"started_at": null,
"timer_started_at": null,
"timer_stopped_at": null,
"approved": false,
"approved_at": null,
"updated_at": "2026-03-17T05:19:02.863+01:00",
"calendar_event_id": null,
"invoice_attribution_id": null,
"invoiced": false,
"overhead": true,
"rejected": false,
"rejected_reason": null,
"rejected_at": null,
"last_activity_at": "2026-03-17T05:19:02.615+01:00",
"submitted": false,
"currency": "EUR",
"currency_default": "USD",
"currency_normalized": "EUR",
"cost": 16000,
"cost_default": 20000,
"cost_normalized": 16000,
"work_cost": 16000,
"work_cost_default": 20000,
"work_cost_normalized": 16000,
"overhead_cost": 0,
"overhead_cost_default": 0,
"overhead_cost_normalized": 0,
"internal_overhead_cost": 0,
"internal_overhead_cost_default": 0,
"internal_overhead_cost_normalized": 0,
"facility_overhead_cost": 0,
"facility_overhead_cost_default": 0,
"facility_overhead_cost_normalized": 0
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "2124"
}
},
"person": {
"meta": {
"included": false
}
},
"service": {
"meta": {
"included": false
}
},
"task": {
"meta": {
"included": false
}
},
"approver": {
"meta": {
"included": false
}
},
"updater": {
"meta": {
"included": false
}
},
"rejecter": {
"meta": {
"included": false
}
},
"creator": {
"meta": {
"included": false
}
},
"last_actor": {
"meta": {
"included": false
}
},
"person_subsidiary": {
"meta": {
"included": false
}
},
"deal_subsidiary": {
"meta": {
"included": false
}
},
"timesheet": {
"meta": {
"included": false
}
},
"invoice_attribution": {
"meta": {
"included": false
}
},
"approval_statuses": {
"meta": {
"included": false
}
}
}
},
{
"id": "250",
"type": "time_entries",
"attributes": {
"date": "2016-10-01",
"created_at": "2026-03-17T05:19:02.656+01:00",
"time": 480,
"billable_time": 480,
"recognized_time": 0,
"note": "two",
"track_method_id": 1,
"started_at": null,
"timer_started_at": null,
"timer_stopped_at": null,
"approved": false,
"approved_at": null,
"updated_at": "2026-03-17T05:19:02.900+01:00",
"calendar_event_id": null,
"invoice_attribution_id": null,
"invoiced": false,
"overhead": true,
"rejected": false,
"rejected_reason": null,
"rejected_at": null,
"last_activity_at": "2026-03-17T05:19:02.656+01:00",
"submitted": false,
"currency": "EUR",
"currency_default": "USD",
"currency_normalized": "EUR",
"cost": 16000,
"cost_default": 20000,
"cost_normalized": 16000,
"work_cost": 16000,
"work_cost_default": 20000,
"work_cost_normalized": 16000,
"overhead_cost": 0,
"overhead_cost_default": 0,
"overhead_cost_normalized": 0,
"internal_overhead_cost": 0,
"internal_overhead_cost_default": 0,
"internal_overhead_cost_normalized": 0,
"facility_overhead_cost": 0,
"facility_overhead_cost_default": 0,
"facility_overhead_cost_normalized": 0
},
"relationships": {
"organization": {
"data": {
"type": "organizations",
"id": "2124"
}
},
"person": {
"meta": {
"included": false
}
},
"service": {
"meta": {
"included": false
}
},
"task": {
"meta": {
"included": false
}
},
"approver": {
"meta": {
"included": false
}
},
"updater": {
"meta": {
"included": false
}
},
"rejecter": {
"meta": {
"included": false
}
},
"creator": {
"meta": {
"included": false
}
},
"last_actor": {
"meta": {
"included": false
}
},
"person_subsidiary": {
"meta": {
"included": false
}
},
"deal_subsidiary": {
"meta": {
"included": false
}
},
"timesheet": {
"meta": {
"included": false
}
},
"invoice_attribution": {
"meta": {
"included": false
}
},
"approval_statuses": {
"meta": {
"included": false
}
}
}
}
],
"meta": {}
}Unapproves time entriesPATCH/api/v2/time_entries/unapprove
URI Parameters
- id
number(required) Example: 1time_entry id
Generated by aglio on 17 Mar 2026