Download
GET https://ppk.geodnet.com/api/download/:orderId
Path Param
Parameter
Example
Type
Required
Description
Request Header
Header
Example
Type
Required
Description
Response Body application/json
When request is abnormal (e.g., invalid orderId or not completed), a JSON is returned:
Parameter
Example
Type
Description
Error code, see status code list
The download task has not been completed
Normal success: returns a ZIP file stream (no JSON body).
Request Example
https://ppk.geodnet.com/api/download/123826
cURL
curl -L "https://ppk.geodnet.com/api/download/123826" \
-H "token: eyJhbGciOiJIUzI1Ni..." \
-o "geodnet_123826.zip"
Response
If parameters are valid and the order is completed, the response is a ZIP file stream.
If the request is abnormal (e.g., invalid orderId, not completed), the response is JSON with error code/message.
Last updated