Your progress is saved locally. to save it permanently.

0 of 4 steps0%
1

Update a Mission Log

  1. Send GET /logs to see all your entries
  2. Pick a log ID (or use Log 1's ID from the previous step)
  3. Open Update Mission Log (PATCH /logs/:id)
  4. Replace :id in the URL with the actual log ID
  5. 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."
}
  1. Send — expect 200 OK
2

Delete a Mission Log

  1. Identify a log ID from your previous GET /logs response
  2. Open Delete Mission Log (DELETE /logs/:id)
  3. Replace :id with the actual log ID
  4. Send — expect 200 OK

Caution: Logs with category anomaly cannot be deleted — only updated. Choose a non-anomaly log.

3

Request Mission Briefing

  1. Open POST /mission/brief
  2. Set the body to {}
  3. Send — you'll receive a briefing summarizing your mission status, log counts by category, and recommendations for completing your mission
4

Verify Splashdown

  1. Open GET /mission and send
  2. Check for completion_percentage: 100 and all steps showing completed: 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.

#RequirementRequest
13+ logs createdPOST /logs
2Update at least one logPATCH /logs/:id
3Delete a logDELETE /logs/:id
4Get a mission briefingPOST /mission/brief
5Verify splashdownGET /mission