Export a Pricing Entity

post

/rest/v19/pricingSetup/actions/export

Use this endpoint to export a pricing entity. Only price model and price agreement matrix grids are supported at this time.

Request

Supported Media Types
Body ()
Root Schema : PricingExportImportAction
Type: object
Show Source
Nested Schema : The chargeq Parameter
Type: object
Title: The chargeq Parameter
Filter charges (a ???where???clause) to restrict the items returned in the export. The chargeq filtering is applied jointly ???AND???) with the q parameter. You can filter by searchable price model item columns and charge columns, for example, partNumber, bomItemVariableName, chargeType, priceType, and searchable custom charge attributes. You can't search by join fields like description, slaesProductType, ratePlanName or currency custom charge attributes.
Nested Schema : File Names
Type: array
Title: File Names
The file names with path
Show Source
Nested Schema : The q Parameter
Type: object
Title: The q Parameter
Filter (a ???where???clause) to restrict the items returned in the export.
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 export a pricing entity by submitting a POST request to the REST resource using cURL. For more information about cURL, see Use cURL.

Only price model and price agreement matrix grids are supported at this time.

curl -X POST -H "Authorization: Bearer <token>" -H "Accept: application/json"
https://sitename.oracle.com/rest/v19/pricingSetup/actions/export

Request Body Sample

{
  "entity": "matrixGrid",
  "id": "test2"
}

Response Body Sample

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