UpdateTaskLog
Stay organized with collections
Save and categorize content based on your preferences.
outlined_flag
This documentation details the UpdateTask request and response within the Deliveries API.
It includes the JSON representation for the overall request/response structure and the nested UpdateTaskRequestLog.
Key fields for the request include a header, the update request itself, the response, and any potential errors.
The UpdateTaskRequestLog specifically focuses on the task ID, the task details, and a field mask for selective updates.
Details on the UpdateTask request and response.
Fields
request
object (UpdateTaskRequestLog )
The request sent to the Deliveries API.
response
object (TaskLog )
The response returned to the client. It will be unset if the RPC call resulted in an error.
errorResponse
object (ErrorResponseLog )
The error response returned to the client. It will be unset if the RPC call succeeded.
UpdateTaskRequestLog
Details on the UpdateTask request
JSON representation
{
"taskId" : string ,
"task" : {
object (TaskLog )
} ,
"updateMask" : string
}
Fields
taskId
string
The ID of the task to update.
task
object (TaskLog )
The task specified in the update request.
updateMask
string (FieldMask format)
The field mask indicating which request fields to update.
This is a comma-separated list of fully qualified names of fields. Example: "user.displayName,photo".
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-08-27 UTC.
[null,null,["Last updated 2025-08-27 UTC."],[],["The provided content outlines the structure for logging an `UpdateTask` request and its corresponding response. The JSON representation includes `header`, `request`, `response`, and `errorResponse` objects. The `UpdateTaskRequestLog` specifically contains the `taskId` (string), the `task` object (TaskLog), and an `updateMask` (string) to specify which fields of the task are being updated. This data logs the complete request, including details for the fields being modified.\n"]]