Incremental export for a dimension

post

/epm/rest/v1/dimensions/byName/incrementalExport

Request

Body ()
Specifies the parameters to use for running the export
Root Schema : Parameters for incremental export of a dimension
Type: object
Show Source
Nested Schema : bindingNames
Type: array
A list of names of bindings in this dimension to export from.
Show Source
Nested Schema : nodeChangeTypes
Type: array
Unique Items Required: true
A list of types of node changes to export.
Show Source
Back to Top

Response

Supported Media Types

202 Response

Created job, export processing

400 Response

Error in body

404 Response

Not found
Back to Top

Examples

The following example shows how to Incremental export a dimension by submitting a post request on the REST resource using cURL.

cURL Command

curl --user epm_cloud_user -X POST -H 'Content-Type: application/json' -d @example_request_payload.json https://servername.fa.us2.oraclecloud.com/epm/rest/v1/dimensions/byName/incrementalExport

Example of Request Body

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

{
    "applicationName": "Financials Cloud",
    "dimensionName": "Corporate Account",
    "bindingNames": ["Corporate Account"],
    "sinceLastExportOfType": "FULL",
    "fileName": "Corporate_Account.zip",
    "nodeChangeTypes": ["NEW", "UPDATED"]
}

Example of Response Body

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

{
  "links": [
    {
      "rel": "results",
      "href": "http://servername.fa.us2.oraclecloud.com/epm/rest/v1/jobRuns/81ecd091-f969-4053-85ef-3718d1ad63b0"
    }
  ]
}
Back to Top