Upload Bulk Data

post

/rest/v19/bulkDataService/actions/upload

Use this endpoint to bulk upload Oracle CPQ pricing data.

Request

There are no request parameters for this operation.

Back to Top

Response

Supported Media Types

202 Response

Success
Body ()
Root Schema : PricingTaskResponse
Type: object
Show Source
Nested Schema : Created By
Title: Created By
Read Only: true
The details of the user who created the record.
Match All
The details of the user who created the record.
Show Source
Nested Schema : Last Modified By
Title: Last Modified By
Read Only: true
The details of the user who modified the record.
Match All
The details of the user who modified the record.
Show Source
Nested Schema : Task Submission Response Messages
Title: Task Submission Response Messages
Read Only: true
List of task submission response messages.
Match All
List of task submission response messages.
Show Source
Nested Schema : UserDetails
Type: object
Show Source
Nested Schema : PricingTaskResponseMessage
Type: object
Show Source
Nested Schema : Error messages
Type: array
Title: Error messages
The list of error messages.
Show Source
Nested Schema : Informational messages
Type: array
Title: Informational messages
The list of informational messages.
Show Source
Nested Schema : Warning messages
Type: array
Title: Warning messages
The list of warning messages.
Show Source
Back to Top

Examples

The following example shows how to bulk upload Oracle CPQ pricing data by submitting a POST request to the REST resource using cURL. For more information about cURL, see Use cURL.

curl -X POST -H "Authorization: Bearer <token>" -H "Accept: application/json"
https://sitename.oracle.com/rest/v19/bulkDataService/actions/upload
-H 'Accept: application/zip' \
-H 'Content-Type: multipart/form-data' \

Request Body Sample

--form 'id="test2"' \
--form 'entity="matrixGrid"' \
--form '=@"/D://matrixGrid_test2.zip"'

Response Body Sample

{
  "taskId": 3023175064,
  "links": [{
      "rel": "related",
      "href": "http://sitename.oracle.com/rest/rest/v19/tasks/3023175064"
    }
  ]
}
Back to Top