Developer Toolkit Force Deploy

post

/rest/v19/adminMeta/actions/forceDeploy

Use this endpoint to validate, save and deploy BML and BMLT updates provided in the request body, unit tests will be ignored. This endpoint is equivalent to the 'cpq-toolkit push --no-test -d' command.

Request

Supported Media Types
Form Parameters
Back to Top

Response

Supported Media Types

Default Response

Returns a zip file with associated log files.
Body ()
Root Schema : schema
Type: file
Back to Top

Examples

Use this endpoint to validate, save and deploy BML and BMLT provided in the input Zip file, unit tests will be ignored by submitting a POST request to the REST resource using cURL. For more information about cURL, see Use cURL.

This endpoint is equivalent to the 'cpq-toolkit push --no-test -d' command.

curl -H "Authorization: Bearer <token>" "https://sitename.oracle.com/rest/v19/adminMeta/actions/forceDeploy" \
  -X POST \
 -H "Accept: application/zip" \
 -H \
  \
 -H "Content-Type: multipart/form-data" 
Back to Top