Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions source/api/data_api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,11 @@ Get image metadata by image ID

``GET https://api.mapflow.ai/rest/rasters/image/{image_id}``

Update image name by image ID
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

``PUT https://api.mapflow.ai/rest/rasters/image/{image_id}&name=new_name``

Delete image
^^^^^^^^^^^^^^^

Expand Down Expand Up @@ -253,6 +258,17 @@ E.g. request:
"minResolution": 0.3
}'

Pagination and sorting options are also available:

.. code:: bash

...
"limit": 15,
"offset": 0,
"sortBy": "ACQUISITION_DATE", # e.g.
"sortOrder": "ASC" # or "DESC"
...

.. note::

| ``aoi``: geometry, - required, Geojson-like Polygon or Multipolygon of the area of the search
Expand Down
Loading
Loading