Load Output Cases
Loads output cases into a project in globalMOO.
Endpoint
POST /models/{model_id}/projects/{project_id}/output-cases
Path Parameters
model_id
integer
Yes
ID of the model
project_id
integer
Yes
ID of the project
Request Parameters
outputCount
integer
Yes
Number of outputs per case (must be > 0)
outputCases
array[array[float]]
Yes
Array of output case arrays (must be non-empty)
Request Format
Response Fields
id
integer
Unique identifier for the output set
model_id
integer
ID of the model
project_id
integer
ID of the project
output_count
integer
Number of outputs per case
output_cases
array[array[float]]
Array of output case arrays
created_at
string
Creation timestamp (ISO 8601)
updated_at
string
Last update timestamp (ISO 8601)
Response Format
Examples
Error Responses
400
Invalid request - Invalid output data format
401
Unauthorized - Invalid API key
404
Model or project not found
429
Too many requests - Rate limit exceeded
500
Internal server error
Validation Rules
Model and project IDs must be positive integers
outputCount must be a positive integer
Each output case must contain exactly outputCount values
All output values must be valid floating point numbers
The output cases array must contain at least one case
Project must exist and be active
Last updated