Create NRCAN results file download order
POST https://ppk.geodnet.com/api/user/estimation/download
Request Body application/json
Parameter
Example
Type
Required
Description
startDate
2025-06-01
Date
Yes
YYYY-MM-DD
endDate
2025-06-26
Date
Yes
YYYY-MM-DD (≤ 30 days)
station
G001
String
Yes
Base station name
Caution: The interval between startDate and endDate must not exceed 30 days.
Response Body application/json
Parameter
Example
Type
Description
code
200
Number
Status code
message
Success
String
Status code description
data.orderId
685e5f63069bfe72e44d17fb
String
Order No.
Request ExampleJSON
{
"station": "G001",
"startDate": "2025-06-01",
"endDate": "2025-06-26"
}cURL
curl -X POST "https://ppk.geodnet.com/api/user/estimation/download" \
-H "Content-Type: application/json" \
-H "token: eyJhbGciOiJIUzI1Ni..." \
-d '{"station":"G001","startDate":"2025-06-01","endDate":"2025-06-26"}'Response 200 Success
{
"code": 200,
"message": "Success",
"data": {
"orderId": "685e5f63069bfe72e44d17fb"
}
}Tip
Archive contains multiple files; NRCAN outputs of interest:
- xxxx.pdf
- xxxx.sum
- errors.txtLast updated
