Deploy Intelligence Model Training

post

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

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

Request

Supported Media Types
Path Parameters
Body ()
Root Schema : IntelligenceDeployment
Type: object
Show Source
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 deploy 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/deploy

Request Body Sample

{
  "trainingId": 3023602739
}

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