Validate invitation token as able to accept. Therefore: it exists, is PENDING status, and is not expired.
cURL
curl --request GET \ --url https://api.main.apexscore.ai/api/v1/organization-invitations/validate_token/ \ --header 'Authorization: Bearer <token>'
{ "is_valid": true, "organization_name": "<string>", "user": { "email": "[email protected]" } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The token to validate
Show child attributes