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