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.36 changelog¶
New features¶
-
Added new endpoints for role based access management. Uses the following endpoints:
-
GET /api/v2/accessRoles/
GET /api/v2/accessRoles/{role_id}/
POST /api/v2/accessRoles/
PUT /api/v2/accessRoles/{role_id}/
DELETE /api/v2/accessRoles/{role_id}/
-
GET /api/v2/accessRoles/users/
-
Added an endpoint that initializes the incremental learning model and begins training using the chunking service
POST /api/v2/projects/(projectId)/incrementalLearningModels/fromSampleModel/
. To use it, enable the feature flag "Sample Data to Start Project." -
Added an endpoint for retrieving the
model_history
of a deploymentGET /api/v2/deployments/(deploymentId)/modelHistory/
. -
Added new APIs for secure configuration management. Uses the following endpoints:
-
POST /api/v2/secureConfigs/
GET /api/v2/secureConfigSchemas/
GET /api/v2/secureConfigSchemas/(secureConfigSchemaId)/
PATCH /api/v2/secureConfigs/(secureConfigId)/
GET /api/v2/secureConfigs/(secureConfigId)/values/
GET /api/v2/secureConfigs/(secureConfigId)/sharedRoles/
PATCH /api/v2/secureConfigs/(secureConfigId)/sharedRoles/
- The
start
andend
query parameters are no longer required forGET /api/v2/deployments/(deploymentId)/dataQualityView/
. Defaults will be provided for a one week span when not specified. - The
start
andend
body parameters are no longer required forPOST /api/v2/deployments/{deploymentId}/predictionDataExports/
. Defaults will be provided for a one week span when not specified.
Deprecation summary¶
- Removed the field
capabilities
fromGET /api/v2/deployments/
andGET /api/v2/deployments/(deploymentId)/
, after being deprecated in 2.29. Instead, useGET /api/v2/deployments/(deploymentId)/capabilities/
. - Removed the query param
targetClasses
fromGET /api/v2/deployments/(deploymentId)/accuracy/
andGET /api/v2/deployments/(deploymentId)/accuracyOverTime/
, after being deprecated in 2.31. Instead, usetargetClass
query param. - Deprecated
metrics
andmodelId
fields fromGET /api/v2/deployments/(deploymentId)/accuracy/
, usedata
field in the same endpoint instead. The deprecated fields will be removed in 2.40.