POST /api/v1/algorithm-models//score
Score a single customer using a trained model. Pass customer attributes and receive a score with explanatory details.Path Parameters
Request Body
Example
Response
The score endpoint returns a result whose shape varies by model type. The common fields are:The response does not include
modelId, modelType, or predictorContributions at the top level. Those fields are only returned by the /score-offer-set endpoint.Error Codes
Roles
any authenticatedPOST /api/v1/algorithm-models//reset-learning
Reset a model’s learned state back to its initial configuration. Creates a version snapshot before resetting for rollback capability. The model status is set todraft after reset.
Path Parameters
Behavior
- Snapshot: Creates a model-version record with the current state (config, metrics, predictors)
- Reset: Clears learned state, metrics, and training history
- Status: Sets model to
draft(requires retraining)