Update a time tracking activity
Updates an existing time tracking activity.
post/quickbooks-desktop/time-tracking-activities/{id}
Path parameters
idstring required
The QuickBooks-assigned unique identifier of the time tracking activity to update.
Example:123ABC-1234567890
The QuickBooks-assigned unique identifier of the time tracking activity to update.
Headers
Conductor-End-User-Idstring required
The ID of the End-User to receive this request.
Example:end_usr_1234567abcdefg
The ID of the End-User to receive this request.
Request body
Example request
{
"revisionNumber": "1721172183",
"transactionDate": "2024-10-01",
"entityId": "80000001-1234567890",
"customerId": "80000001-1234567890",
"serviceItemId": "80000001-1234567890",
"duration": "PT1H30M",
"classId": "80000001-1234567890",
"payrollWageItemId": "80000001-1234567890",
"note": "Project planning meeting with client.",
"billingStatus": "billable"
}Response
Returns the updated time tracking activity.
Example response
{
"id": "123ABC-1234567890",
"objectType": "qbd_time_tracking_activity",
"createdAt": "2025-01-01T12:34:56+00:00",
"updatedAt": "2025-02-01T12:34:56+00:00",
"revisionNumber": "1721172183",
"transactionDate": "2024-10-01",
"entity": {
"id": "80000001-1234567890",
"fullName": "Acme Corporation"
},
"customer": {
"id": "80000001-1234567890",
"fullName": "Acme Corporation"
},
"serviceItem": {
"id": "80000001-1234567890",
"fullName": "Legal Consulting"
},
"duration": "PT1H30M",
"class": {
"id": "80000001-1234567890",
"fullName": "Project Management"
},
"payrollWageItem": {
"id": "80000001-1234567890",
"fullName": "Regular Pay"
},
"note": "Project planning meeting with client.",
"billingStatus": "billable",
"externalId": "12345678-abcd-1234-abcd-1234567890ab"
}