v1
latestOpenAPI 3.0.02026-07-241010520.6 KBDesigns
Create Design
Create a new design for a project.
The returned design ID allows you to create a deep link into the Aurora application. That way, you can direct users to a specific design within a specific project. Please note, a design must always belong to a project. Therefore the project_id must always be provided.
post/tenants/{tenant_id}/designs
Path parameters
tenant_idstring uuid required
The ID of the tenant to create the design in.
Request body
Example request
{
"design": {
"external_provider_id": "YourId123",
"name": "My first test design"
}
}Response
Design successfully created.
Example response
{
"design": {
"external_provider_id": "YourId123",
"name": "My first test design"
}
}