EndpointsWidgets

Generate parental consent URL

Returns a URL for the hosted parental consent widget, to display in an iframe. Present it to the guardian of an existing challenge to collect their consent. This is the same experience `/challenge/send-email` links to, for cases where you deliver the link yourself.

POST
/widget/generate-parental-consent-url
AuthorizationBearer <token>

In: header

Request Body

application/json

Generate parental consent URL request

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/widget/generate-parental-consent-url" \  -H "Content-Type: application/json" \  -d '{    "challengeId": "ae6d4729-af32-42ea-8ef2-ff46c7664802",    "email": "parent@example.com"  }'
{  "url": "https://family.k-id.com/widget",  "shortUrl": "https://family.k-id.com/s/12345678-1234-1234-1234-123456789012?pid=42&s=qr"}