Create a Design with specific Simulation Settings

This guide walks through designating a simulation settings preset while creating a design.

What you'll need


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>"
}