Retrieve the list of maps in the inventory.
GET/map/inventory
This endpoint returns a list of all maps currently available in the inventory. The list provides detailed information about each map, including its metadata, paths, and imaging dates.
Request
Responses
- 200
- 500
- application/json
- Schema
- Example (from schema)
Schema
Array [
-
typeis the specific error type (e.g.,ClientError,InternalServerError). -
msgis the associated error message (a string). - MOD1
- MOD2
- MOD3
- MOD4
- MOD5
- MOD6
- MOD7
- MOD8
- MOD9
- MOD10
- MOD11
- MOD12
- MOD13
- MOD14
- MOD15
- MOD16
]
error
object
nullable
Represents various types of errors that can occur in the application.
When serialized, it will be represented in the following format:
{
"type": "ErrorType",
"msg": "ErrorMessage"
}
Where:
oneOf
Possible values: [ClientError]
Possible values: [InternetConnectionError]
Possible values: [UnauthorizedError]
Possible values: [InternalServerError]
Possible values: [MissingDataError]
Possible values: [ParsingFailedError]
Possible values: [WritingDataError]
Possible values: [ForbiddenError]
Possible values: [NotAllowedError]
Possible values: [ValidationError]
Possible values: [SQLError]
Possible values: [StorageLimitExceededError]
Possible values: [StorageUnavailable]
Possible values: [ConflictError]
Possible values: [MatomoError]
Possible values: [ProcessInterrupted]
The filename associated with the map, if available.
This field includes the name of the file, optionally without its extension.
It can be None if the filename is unavailable or unspecified.
Name of the map or the inventory item.
Request ID associated with the map inventory.
Optional: The date when the map is made available for use, if applicable.
Optional: start date of imaging for the map, if applicable.
Optional: end date of imaging for the map, if applicable.
Footprint of the map, usually represented as a string.
Paths to the .gpkg and .json files on the filesystem.
[
{
"error": {
"msg": "string",
"type": "ClientError"
},
"fileName": "string",
"name": "string",
"reqId": "string",
"availabilityDate": "2026-01-01T11:09:05.966Z",
"beginImagingDate": "2026-01-01T11:09:05.966Z",
"endImagingDate": "2026-01-01T11:09:05.966Z",
"footprint": "string",
"paths": [
"string"
]
}
]
- application/json
- Schema
- Example (from schema)
Schema
{
"message": "string",
"name": "string",
"statusCode": 0
}