This guide walks through designating a simulation settings preset while creating a design.
What you'll need
- A simulation settings preset ID — create one via POST /api/v1/settings/simulation or retrieve your company's presets via GET /api/v1/settings/simulation
Send a POST request to /api/v1/designs/{projectId} using the id of the project you want to create the design on. The projectId and name fields are required.
To apply a specific simulation settings preset, pass its id as simulationSetting. If you omit this field, the company's default preset will be used automatically.
// example request body
{
"projectId": "<projectId>"
"name": "My Design",
"simulationSetting": "<simulationSettingId>"
}
