Undeploy Intelligence Model Training

post

/rest/v19/intelligenceSetup/models/{modelId}/actions/undeploy

Use this endpoint to undeploy the most recent training deployment for the specified intelligence model.

Request

Supported Media Types
Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Success
Body ()
Root Schema : IntelligenceTraining
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 : UserDetails
Type: object
Show Source
Back to Top

Examples

The following example shows how to undeploy most recent training for the specified intelligence model 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/intelligenceSetup/models/334523/actions/undeploy

Response Body Sample

{
  "id": 3023602739,
  "dateModified": "2025-02-27T10:13:23Z",
  "dateAdded": "2025-02-27T10:12:01Z",
  "learningTimeElapsed": "72",
  "status": "Completed",
  "message": "The model was built successfully.",
  "lastDeployed": "2025-02-27T10:13:23Z",
  "totalRecords": 2132
}
Back to Top