Update a bulk export activity child object detail

patch

/crmRestApi/resources/11.13.18.05/bulkExportActivities/{BulkExportJobId}/child/childBulkExportActivity/{ExportObject}

Request

Path Parameters
Header Parameters
  • If the REST API supports runtime customizations, the shape of the service may change during runtime. The REST client may isolate itself from these changes or choose to interact with the latest version of the API by specifying this header. For example: Metadata-Context:sandbox="TrackEmployeeFeature".
  • The protocol version between a REST client and service. If the client does not specify this header in the request the server will pick a default version for the API.
Supported Media Types
Request Body - application/json ()
Root Schema : schema
Type: object
Show Source
Nested Schema : Export Child Object Activities
Type: array
Title: Export Child Object Activities
The export child object activities resource is used to view, create, and update the large volumes of the child object data from target tables. The child bulk export activity resource can also be used to export hierarchy trees with multiple levels.
Show Source
Nested Schema : bulkExportActivities-childBulkExportActivity-childBulkExportActivity-item-patch-request
Type: object
Show Source
Back to Top

Response

Supported Media Types

Default Response

The following table describes the default response for this task.
Headers
  • If the REST API supports runtime customizations, the shape of the service may change during runtime. The REST client may isolate itself from these changes or choose to interact with the latest version of the API by specifying this header. For example: Metadata-Context:sandbox="TrackEmployeeFeature".
  • The protocol version between a REST client and service. If the client does not specify this header in the request the server will pick a default version for the API.
Body ()
Root Schema : bulkExportActivities-childBulkExportActivity-item-response
Type: object
Show Source
Nested Schema : Export Child Object Activities
Type: array
Title: Export Child Object Activities
The export child object activities resource is used to view, create, and update the large volumes of the child object data from target tables. The child bulk export activity resource can also be used to export hierarchy trees with multiple levels.
Show Source
Nested Schema : bulkExportActivities-childBulkExportActivity-childBulkExportActivity-item-response
Type: object
Show Source
Back to Top

Examples

The following example shows how to update a bulk export activity child object detail by submitting a PATCH request on the REST resource using cURL.

Note:

Depending on the object being exported, you can export hierarchy trees with multiple levels using the child bulk export activities resource. Using this resource, you can export the complete hierarchy, including multiple levels of hierarchical children, recursively within the parent object.

cURL Command

curl -u <username:password> \ -X PATCH -d @example_request_payload.json https://servername.fa.us2.oraclecloud.com/crmRestApi/resources/11.13.18.05/bulkExportActivities/300100125069284/child/childBulkExportActivity/ActivityAssignee

Example of Request Body

The following shows an example of the request body in JSON format.

{
"ExportObject": "ActivityObjectives",
"ExportParentObject": "Activity"
}

Example of Response Body

The following shows an example of the response body in JSON format.

{
  "ExportObject" : "ActivityObjectives",
  "ExportParentObject" : "Activity",
  "ExportColumnNames" : "ActivityId,AssigneeId",
  "ExportFilterCriteria" : null,
  "ExportOrderBy" : null,
  "RecordsExported" : "",
  "CreatedBy" : "SALES_ADMIN",
  "CreationDate" : "2018-03-28T22:35:48.498+00:00",
  "LastUpdateDate" : "2018-03-30T13:38:42+00:00",
  "LastUpdateLogin" : "688D79ABD4837D17E053C30AF20A6190",
  "LastUpdatedBy" : "SALES_ADMIN",
  "links" : 
  ...,
}
Back to Top