0 of 4 steps0%
1
Update a Mission Log
- Send GET /logs to see all your entries
- Pick a log ID (or use Log 1's ID from the previous step)
- Open Update Mission Log (
PATCH /logs/:id) - Replace
:idin the URL with the actual log ID - Set the body:
{
"title": "Pre-flight navigation check complete — VERIFIED BY FLIGHT DIRECTOR",
"description": "All star trackers aligned. Secondary backup nav confirmed. Ready for TLI burn."
}
- Send — expect
200 OK
2
Delete a Mission Log
- Identify a log ID from your previous
GET /logsresponse - Open Delete Mission Log (
DELETE /logs/:id) - Replace
:idwith the actual log ID - Send — expect
200 OK
Caution: Logs with category anomaly cannot be deleted — only updated. Choose a non-anomaly log.
3
Request Mission Briefing
- Open POST /mission/brief
- Set the body to
{} - Send — you'll receive a briefing summarizing your mission status, log counts by category, and recommendations for completing your mission
4
Verify Splashdown
- Open GET /mission and send
- Check for
completion_percentage: 100and all steps showingcompleted: true
If you see 100% — congratulations, you've achieved splashdown!
If not 100%, check which step is incomplete in the response. You likely need more logs across different categories. Run POST /mission/brief to see recommendations — the briefing tells you exactly what's missing.
| # | Requirement | Request |
|---|---|---|
| 1 | 3+ logs created | POST /logs |
| 2 | Update at least one log | PATCH /logs/:id |
| 3 | Delete a log | DELETE /logs/:id |
| 4 | Get a mission briefing | POST /mission/brief |
| 5 | Verify splashdown | GET /mission |