REST API changelogs¶
Changelogs contain curated, ordered lists of notable changes for each versioned release for DataRobot's REST API client. Reference the changelog below to view changes for DataRobot's newest version, and view previous versions in the table of contents.
DataRobot REST API v2.35 changelog¶
New features¶
-
Added new endpoints for OCR Jobs. This is a feature for processing datasets with PDFs. It runs OCR on the PDFs in the dataset and replaces all images in those PDFs with text. The feature is comprised of the following endpoints:
POST /api/v2/ocrJobResources/
GET /api/v2/ocrJobResources/(jobResourceId)/
GET /api/v2/ocrJobResources/(jobResourceId)/errorReport/
GET /api/v2/ocrJobResources/(jobResourceId)/jobStatus/
POST /api/v2/ocrJobResources/(jobResourceId)/start/
API changes¶
-
The new optional parameter
numberOfIncrementalLearningIterationsBeforeBestModelSelection
for projects with the auto-incremental learning option has been added toPATCH /api/v2/projects/(projectId)/aim/
. It is used in automated incremental learning Autopilot mode. -
Added endpoints to calculate and retrieve the SHAP distributions data:
POST /api/v2/insights/shapDistributions/
GET /api/v2/insights/shapDistributions/models/(entityId)/
Deprecation summary¶
- The API endpoint
GET /api/v2/projects/(projectId)/models/(modelId)/primeInfo/
is deprecated, as creating Prime models is no longer supported. - The query params
projectId
andapplicationId
have been deprecated forGET /api/v2/useCases/
.
Documentation changes¶
- The correct expected HTTP response code has been documented for
POST /api/v2/notifications/
. It should return a201
, but200
was previously documented. - The correct expected HTTP response code has been documented for
PATCH /api/v2/ssoConfigurations/(configurationId)/
. It should return a204
, but200
was previously documented.