Systems
Delete system
Delete a system definition by ID. This will not delete associated system configurations.
DELETE
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
The ID of the system to delete.
Example:
"12345678-0a8b-4f66-b6f3-2ddcfa097257"
Response
200
application/json
System deleted successfully
Whether the deletion was successful.
Previous
Create system configurationCreate a new configuration for a system.
Each configuration contains specific parameter values that match the system's configSchema - things like model parameters, thresholds, or processing options.
Once created, configurations cannot be modified, ensuring stable reference points for evaluations.
When creating a configuration:
- The 'config' object is validated against the parent system's configSchema
- Configurations with validation errors are still stored, with errors included in the response
- Validation errors indicate fields that don't match the schema but don't prevent creation
- Having validation errors may affect how some evaluation metrics are calculated
Next