Update properties of a specific map identified by its import request ID.
PUT/map/inventory/:reqId
This endpoint updates the properties of the map identified by reqId, such as its name,
and returns a response indicating the update status.
Request
Path Parameters
reqId stringrequired
The unique identifier of the map import request
- application/json
Body
required
name stringnullable
Responses
- 200
- 500
- application/json
- Schema
- Example (from schema)
Schema
- MapCreateStatus
- DeliveryStatusEnum
- DeploymentStatus
area int64nullable
beginImagingDate date-timenullable
createdDate date-timerequired
downloadDuration int32nullable
download duration in seconds
endImagingDate date-timenullable
errMes stringnullable
eta int32nullable
estimated time in seconds (when state is Create or Delivery)
fileName stringnullable
footprint stringnullable
isUpdateQueued booleanrequired
isUpdated booleanrequired
mapProperties
object
required
Map DTO struct ['MapProps']
for app inner using
boundingBox stringrequired
catalogId stringnullable
fileName stringnullable
lastUpdateAfter int64nullable
name stringnullable
productId stringrequired
productName stringrequired
targetResolution int64required
zoomLevel int64required
progress floatnullable
reqId stringrequired
size int64nullable
state MapStaterequired
Possible values: [create, prepare, delivery, validation, deploy]
status
object
nullable
oneOf
string
string
string
storageStatus MapStorageStatusEnumrequired
Possible values: [initializing, ready, deleteRequest, deleteApprove, deleted]
Represents the various states of a map in the storage system.
updateBy stringnullable
updatedDate date-timerequired
{
"area": 0,
"beginImagingDate": "2026-01-01T11:09:05.978Z",
"createdDate": "2026-01-01T11:09:05.978Z",
"downloadDuration": 0,
"endImagingDate": "2026-01-01T11:09:05.978Z",
"errMes": "string",
"eta": 0,
"fileName": "string",
"footprint": "string",
"isUpdateQueued": true,
"isUpdated": true,
"mapProperties": {
"boundingBox": "string",
"catalogId": "string",
"fileName": "string",
"lastUpdateAfter": 0,
"name": "string",
"productId": "string",
"productName": "string",
"targetResolution": 0,
"zoomLevel": 0
},
"progress": 0,
"reqId": "string",
"size": 0,
"state": "create",
"status": "Start",
"storageStatus": "initializing",
"updateBy": "string",
"updatedDate": "2026-01-01T11:09:05.978Z"
}
- application/json
- Schema
- Example (from schema)
Schema
message stringrequired
name stringrequired
statusCode int32required
{
"message": "string",
"name": "string",
"statusCode": 0
}
Loading...