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/c31ee575-0408-4261-8c67-82b50e11f118/results/?format=api&page=2
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 12,
    "next": null,
    "previous": "https://demo.lizard.net/api/v4/scenarios/c31ee575-0408-4261-8c67-82b50e11f118/results/?format=api",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/scenarios/c31ee575-0408-4261-8c67-82b50e11f118/results/296897/?format=api",
            "id": 296897,
            "name": "Max water level",
            "code": "s1-max-dtri",
            "description": null,
            "family": "Basic",
            "raster": "https://demo.lizard.net/api/v4/rasters/c4b85d9b-06af-4290-8a1f-9e13dfe5ef4c/?format=api",
            "attachment_url": null,
            "upload_url": "https://lizard-prod.s3.amazonaws.com/scenarios/c31ee575-0408-4261-8c67-82b50e11f118/s1-max-dtri-upload?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA2FOYZ3A3OWTIUOHB%2F20250513%2Feu-west-1%2Fs3%2Faws4_request&X-Amz-Date=20250513T042558Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=14c3a8f36fcdbf94ee3b1d90b252359bbc8ee9196749b0754cc12573e575964e"
        },
        {
            "url": "https://demo.lizard.net/api/v4/scenarios/c31ee575-0408-4261-8c67-82b50e11f118/results/296898/?format=api",
            "id": 296898,
            "name": "Max flow velocity",
            "code": "ucr-max-quad",
            "description": null,
            "family": "Basic",
            "raster": "https://demo.lizard.net/api/v4/rasters/3d226d61-e9f5-4a23-9c47-376edd3df8bc/?format=api",
            "attachment_url": null,
            "upload_url": "https://lizard-prod.s3.amazonaws.com/scenarios/c31ee575-0408-4261-8c67-82b50e11f118/ucr-max-quad-upload?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA2FOYZ3A3OWTIUOHB%2F20250513%2Feu-west-1%2Fs3%2Faws4_request&X-Amz-Date=20250513T042558Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=8994bba066291e9e2e61f288754177f323c6affcad58f3c9ff6b34396957369f"
        }
    ]
}