client.delete_baseline

Deletes an existing baseline from a project

Input ParameterTypeRequiredDescription
project_idstringYesThe unique identifier for the project
model_idstringYesThe unique identifier for the model
baseline_idstringYesThe unique identifier for the baseline
PROJECT_NAME = 'example_project'
MODEL_NAME = 'example_model'
BASELINE_NAME = 'example_preconfigured'


client.delete_baseline(
  project_id=PROJECT_NAME,
  model_id=MODEL_NAME,
  baseline_id=BASELINE_NAME,
)