v1

latestOpenAPI 3.0.02026-07-241010520.6 KB
Design Assets

List Design Assets

Retrieve the design assets for a design.


Design Assets are returned sorted in descending order based on the taken_at timestamp.

Only design assets that are ready for download will be listed (i.e. design assets whose upload are still in progress will be omitted)

get/tenants/{tenant_id}/designs/{design_id}/assets

Path parameters

tenant_idstring uuid required

The ID of the tenant that the design is part of.

design_idstring uuid required

The ID of the design to retrieve the assets for.

Query parameters

asset_type[]string[]

One or more asset types to be returned.

Response

Design Assets successfully retrieved.

Example response

{
  "assets": [
    {
      "url": "http://some-host.com/some-path/file2.png",
      "filename": "mounting_hardware_spec_sheet.pdf",
      "taken_at": "2023-07-11 18:43:18 UTC"
    }
  ]
}