CreateTaskLog

  • This documentation details the JSON representation of the CreateTask request and response within the Deliveries API.

  • The JSON object includes fields for the request header (header), the request sent (request), the response received (response), and any error response (errorResponse).

  • Each field within the JSON object links to further documentation providing detailed information on their respective structures (DeliveryRequestHeaderLog, CreateTaskRequestLog, TaskLog, ErrorResponseLog).

  • The response field is only populated if the request is successful, while the errorResponse field is populated only if the request encounters an error.

Details on the CreateTask request and response.

JSON representation
{
  "header": {
    object (DeliveryRequestHeaderLog)
  },
  "request": {
    object (CreateTaskRequestLog)
  },
  "response": {
    object (TaskLog)
  },
  "errorResponse": {
    object (ErrorResponseLog)
  }
}
Fields
header

object (DeliveryRequestHeaderLog)

Request header.

request

object (CreateTaskRequestLog)

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.