Verify authentication (POST)
POST
/v1/auth/verifyResponses
200Successful response
idstringtypestringorgstringgymstringactivebooleanRequest
curl -X POST "https://api.sendhelios.com/v1/auth/verify"const response = await fetch("https://api.sendhelios.com/v1/auth/verify", {
method: "POST"
});import requests
response = requests.post(
"https://api.sendhelios.com/v1/auth/verify",
)Response
{
"id": "string",
"type": "string",
"org": "string",
"gym": "string",
"active": true
}