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
thestratify/save/orstratify/plan/save/actions documented in
Stratification Workflow.
Stratification saved maps
| Method | Path | Purpose |
|---|---|---|
| GET | stratification/stratification-saved-maps/ | List saved stratification maps |
| GET | stratification/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
| Method | Path | Purpose |
|---|---|---|
| GET | stratification/sample-plan/sample-plan-saved-maps/ | List saved sample plan maps |
| GET | stratification/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
| Status | Trigger |
|---|---|
| 200 | Success. |
| 403 | Missing stratification_map.view or sample_plan_map.view. |
| 404 | Not found. |
