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 TopResponse
Supported Media Types
- application/json
202 Response
Success
Root Schema : PricingTaskResponse
Type:
Show Source
object
-
createdBy:
Created By
Title:
Created By
Read Only:true
The details of the user who created the record. -
lastModifiedBy:
Last Modified By
Title:
Last Modified By
Read Only:true
The details of the user who modified the record. -
links:
array Links
Title:
Links
Read Only:true
The link relations associated with the resource instance. -
messages:
Task Submission Response Messages
Title:
Task Submission Response Messages
Read Only:true
List of task submission response messages. -
taskId:
integer()
Title:
Task ID
Task Identifier.
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 : Links
Type:
array
Title:
Links
Read Only:
true
The link relations associated with the resource instance.
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:
Show Source
object
-
emailId:
string()
Title:
Email Id
Email Id of the user -
firstName:
string()
Title:
First Name
First Name of the user -
lastName:
string()
Title:
Last Name
Last Name of the user
Nested Schema : PricingTaskResponseMessage
Type:
Show Source
object
-
errors:
array Error messages
Title:
Error messages
The list of error messages. -
info:
array Informational messages
Title:
Informational messages
The list of informational messages. -
warnings:
array Warning messages
Title:
Warning messages
The list of warning messages.
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
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" } ] }