Model Endpoints

Models are the core resource in globalMOO. They represent optimization problems and contain all the necessary configuration for running optimization trials.

Available Endpoints

Model Object

A model object contains the following fields:

{
    "id": 123,
    "name": "string",
    "description": "string",
    "created_at": "2025-01-31T10:00:00.000Z",
    "updated_at": "2025-01-31T10:00:00.000Z"
}
Field
Type
Description

id

integer

Unique identifier for the model

name

string

Name of the model (4-96 characters)

description

string

Optional description of the model (must be ≥8 characters if provided)

created_at

string

ISO 8601 timestamp with millisecond precision

updated_at

string

ISO 8601 timestamp with millisecond precision

Common Use Cases

  1. Creating a new optimization model before defining objectives

  2. Listing existing models to find one to work with

  3. Managing multiple models for different optimization scenarios

Last updated