Retrieves the map share payload for a given request ID.
GET/map/share/:reqId
This endpoint returns the share payload (metadata) of the map identified by reqId.
The payload contains all necessary information for another device to import and download the map.
Request
Path Parameters
reqId stringrequired
Responses
- 200
- 500
- application/json
- Schema
- Example (from schema)
Schema
area int64nullable
beginImagingDate date-timenullable
catalogId stringrequired
catalog id of the map
endImagingDate date-timenullable
fileName stringnullable
footprint stringrequired
Geographical footprint of the map (WKT, GeoJSON, or custom format)
name stringrequired
Human-readable map name
packageUrl stringnullable
region stringnullable
size int64required
Map file size in bytes
{
"area": 0,
"beginImagingDate": "2026-01-01T11:09:05.982Z",
"catalogId": "string",
"endImagingDate": "2026-01-01T11:09:05.982Z",
"fileName": "string",
"footprint": "string",
"name": "string",
"packageUrl": "string",
"region": "string",
"size": 0
}
- application/json
- Schema
- Example (from schema)
Schema
message stringrequired
name stringrequired
statusCode int32required
{
"message": "string",
"name": "string",
"statusCode": 0
}
Loading...