Saved Maps

Once you save a stratification map or a sample plan (the .../save/ actions in
Stratification Workflow), it becomes a permanent record you can browse and
retrieve through the two endpoint families on this page. Both are genuinely read-only — list/retrieve only, no
write methods exist on either. See SatMRV API for the base URL, authentication, and response
envelope shape.

These endpoints are for browsing what you've already saved — not for saving anything new. To save a draft, use
the stratify/save/ or stratify/plan/save/ actions documented in
Stratification Workflow.

Stratification saved maps

MethodPathPurpose
GETstratification/stratification-saved-maps/List saved stratification maps
GETstratification/stratification-saved-maps/ID/Retrieve a saved stratification map

Required permission: stratification_map.view. Filters: order, aoi, map_tag.

Example

curl "https://backend.spacenus.de/api/v1.2/sat-mrv/stratification/stratification-saved-maps/?aoi=AOI_ID" \
  -H "Authorization: Bearer YOUR_TOKEN"

Response:

{
  "status": "success",
  "message": "Operation successful.",
  "data": [
    {
      "id": 91,
      "name": "North Field Cluster - v1",
      "map_tag": "MAP_TAG",
      "order": 214,
      "is_recommended": false,
      "response": {
        "map_uuid": "DATA_UUID",
        "metadata": {"number_of_zones": 4}
      },
      "map_uuid": "MAP_UUID",
      "created_at": "2026-07-01T09:30:11Z",
      "company": 30
    }
  ]
}

Sample plan saved maps

MethodPathPurpose
GETstratification/sample-plan/sample-plan-saved-maps/List saved sample plan maps
GETstratification/sample-plan/sample-plan-saved-maps/ID/Retrieve a saved sample plan map

Required permission: sample_plan_map.view. Filters: order, stratification_map, aoi, map_tag, plan_tag.

Example

curl "https://backend.spacenus.de/api/v1.2/sat-mrv/stratification/sample-plan/sample-plan-saved-maps/?plan_tag=PLAN_TAG" \
  -H "Authorization: Bearer YOUR_TOKEN"

Response:

{
  "status": "success",
  "message": "Operation successful.",
  "data": [
    {
      "id": 145,
      "name": "North Field Cluster - plan v1",
      "plan_tag": "PLAN_TAG",
      "order": 214,
      "is_recommended": false,
      "response": {
        "map_uuid": "DATA_UUID",
        "metadata": {"number_of_samples": 40, "zone_offset": 2}
      },
      "map_uuid": "MAP_UUID",
      "created_at": "2026-07-01T09:45:02Z",
      "company": 30,
      "is_custom": false,
      "stratification_map": {
        "id": 91,
        "name": "North Field Cluster - v1",
        "map_tag": "MAP_TAG",
        "order": 214,
        "is_recommended": false,
        "response": {"map_uuid": "DATA_UUID"},
        "map_uuid": "MAP_UUID",
        "created_at": "2026-07-01T09:30:11Z",
        "company": 30
      }
    }
  ]
}

Status codes

StatusTrigger
200Success.
403Missing stratification_map.view or sample_plan_map.view.
404Not found.