Headless LMS

Validate an invite token and stage it for signup

POST
/api/organizations/invites/activate

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://example.com/api/organizations/invites/activate" \  -H "Content-Type: application/json" \  -d '{    "token": "string"  }'
{  "status": "accepted",  "email": "string",  "role": "admin"}
{  "error": "string",  "message": "string"}