EndpointsTest

Set challenge status

Forces an existing challenge to `PASS` or `FAIL`. **Testing only.** It simulates a completed challenge so you can exercise the post-challenge path without running a real verifiable parental consent flow.

POST
/test/set-challenge-status
AuthorizationBearer <token>

In: header

Request Body

application/json

Set challenge status request

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://example.com/test/set-challenge-status" \  -H "Content-Type: application/json" \  -d '{    "challengeId": "ae6d4729-af32-42ea-8ef2-ff46c7664802",    "status": "PASS",    "age": 13,    "jurisdiction": "US-CA"  }'
{}