Endpoint for interacting with 3Di scenario results.

Add attachments to newly created results by uploading a file (using a PUT request) to the temporary upload_url of a result.

Subendpoints

The subendpoints below have been defined for convienience and may be used for viewing or deleting a specific class of results. They are also available via the "Extra Actions" button in the top-right corner when viewing a result list.

  • /api/v4/scenarios/{uuid}/results/arrival/
  • /api/v4/scenarios/{uuid}/results/basic/
  • /api/v4/scenarios/{uuid}/results/damage/
  • /api/v4/scenarios/{uuid}/results/raw/
  • /api/v4/scenarios/{uuid}/results/tiles/

For example, a DELETE request on /api/v4/scenarios/{uuid}/results/raw/ would schedule all raw results for deletion. This is more convenient than deleting results one by one via /api/v4/scenarios/{uuid}/results/{id}/.

GET /api/v4/scenarios/90ee6870-18da-47ec-aa04-fbc6e5f7e038/results/raw/?format=api
HTTP 200 OK
Allow: GET, DELETE, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 3,
    "next": null,
    "previous": null,
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/scenarios/90ee6870-18da-47ec-aa04-fbc6e5f7e038/results/498725/?format=api",
            "id": 498725,
            "name": "Grid administration",
            "code": "grid-admin",
            "description": null,
            "family": "Raw",
            "raster": null,
            "attachment_url": "https://lizard-prod.s3.amazonaws.com/scenarios/90ee6870-18da-47ec-aa04-fbc6e5f7e038/gridadmin.h5?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA2FOYZ3A3OWTIUOHB%2F20250615%2Feu-west-1%2Fs3%2Faws4_request&X-Amz-Date=20250615T125919Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=c8873ecd03b9d45e4115ce14d2f7992cb7478d53505515834d5eab058cef6858",
            "upload_url": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/scenarios/90ee6870-18da-47ec-aa04-fbc6e5f7e038/results/498726/?format=api",
            "id": 498726,
            "name": "Raw 3Di output",
            "code": "results-3di",
            "description": null,
            "family": "Raw",
            "raster": null,
            "attachment_url": "https://lizard-prod.s3.amazonaws.com/scenarios/90ee6870-18da-47ec-aa04-fbc6e5f7e038/results_3di.nc?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA2FOYZ3A3OWTIUOHB%2F20250615%2Feu-west-1%2Fs3%2Faws4_request&X-Amz-Date=20250615T125919Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=50e8f5e89f124c2bcf14c5dda9bfdc15fd30bbff0c92af33e75bdbb8863fe3fc",
            "upload_url": null
        },
        {
            "url": "https://demo.lizard.net/api/v4/scenarios/90ee6870-18da-47ec-aa04-fbc6e5f7e038/results/498727/?format=api",
            "id": 498727,
            "name": "Calculation core logging",
            "code": "logfiles",
            "description": null,
            "family": "Raw",
            "raster": null,
            "attachment_url": "https://lizard-prod.s3.amazonaws.com/scenarios/90ee6870-18da-47ec-aa04-fbc6e5f7e038/log_files.zip?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA2FOYZ3A3OWTIUOHB%2F20250615%2Feu-west-1%2Fs3%2Faws4_request&X-Amz-Date=20250615T125919Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=46b93fcdc0ac0eacec66c65ff5322f06d8c4e55a9758c2f2adac00df867d46d9",
            "upload_url": null
        }
    ]
}