How to complete the challenge GET /api/challenger/database/guid (200)
Use GET /api/challenger/database/{guid} to export the todo database for your challenger session.
The {guid} in the URL should be your active challenger GUID. The response body can be saved and later sent back to PUT /api/challenger/database/{guid}.
Try it now
GET /api/challenger/database/{guid} to export the todo database
Lessons Learned
GET /api/challenger/database/{guid}exports todo data rather than challenge-completion metadata.- Database export is the fixture backup step for repeatable stateful tests.
- The returned
JSONshould be treated as data to restore later, not just something to display.
Suggested Experiments
- Export the database, create or delete a todo, then export again and compare the two payloads.
- Restore the saved database payload and confirm the todo collection returns to the earlier state.