Train an Intelligence Model

post

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

Use this endpoint start an intelligence model training session.

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 start an intelligence model training session 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/321456/actions/train

Request Body Sample

[{
    "id": 321456,
    "startDate": "2024-08-09T07:00:00Z",
    "status": "In Progress"
  }
]
Back to Top