Perform Commerce Process Deployment Center Actions

post

/rest/v19/commerceProcessSetups/{processVarName}/deploymentCenter/actions

Use this endpoint to perform Deployment Center actions for the specified Commerce Process. The following actions can be performed: Deploy Process, Clone Process, Repopulate Column Data, Remove Transactions, Mass Update Transactions, Export Process, Delete Process, and Generate Schema and WSDL.

Request

Supported Media Types
Path Parameters
Body ()
Root Schema : CmDeploymentCenterActionRequestModel
Type: object
Show Source
Back to Top

Response

Supported Media Types

201 Response

Success
Back to Top

Examples

The following example shows how to perform Deployment Center actions for the specified Commerce Process 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 "Content-type: application/json"
https://sitename.oracle.com/rest/v19/commerceProcessSetups/oraclecpqo/deploymentCenter/actions

Request Body Samples

Deploy Process Sample

{
  "emailTo": "abcd@oracle.com",
  "sendEmail": true,
  "category": "DEPLOY_PROCESS",
  "scheduledTime": "12/06/2024 6:09 AM"
}

Clone Process Sample

{
  "emailTo": "abcd.abcd@oracle.com",
  "sendEmail": true,
  "category": "CLONE_PROCESS",
  "scheduledTime": "12/06/2024 6:09 AM"
}

Repopulate Data Columns Sample

{
  "emailTo": "abcd.abcd@oracle.com",
  "sendEmail": true,
  "category": "REPOPULATE_COLUMN_DATA",
  "scheduledTime": "12/06/2024 6:09 AM"
}

Remove Transactions Sample

{
  "emailTo": "abcd.abcd@oracle.com",
  "sendEmail": true,
  "category": "REMOVE_TRANSACTION",
  "scheduledTime": "12/06/2024 6:09 AM"
}

Mass Update Transactions Sample

{
  "emailTo": "abcd.abcd@oracle.com",
  "sendEmail": true,
  "category": "MASS_UPDATE_TRANSACTIONS",
  "scheduledTime": "12/06/2024 6:09 AM",
  "stepIds": "123456,234564,987654"
}

Export Process Sample

{
  "category": "BULK_DOWNLOAD"
}

Delete Process Sample

{
  "emailTo": "abcd.abcd@oracle.com",
  "sendEmail": true,
  "category": "DELETE_PROCESS",
  "scheduledTime": "12/06/2024 6:09 AM"
}

Generate Schema and WSDL Sample

{
  "category": "GENERATE_SCHEMA_AND_WSDL"
}

Response Body Sample

{
  taskId: 12345678
}
Back to Top