Managing Siteglide Sessions via the API
Last updated 8 months ago
Was this helpful?
Your Siteglide Admin email address
help@siteglide.com
Your Siteglide Admin password
my_super_secure_password
POST /api/public/general/sessions/login HTTP/1.1 Host: Content-Type: application/x-www-form-urlencoded Accept: */* Content-Length: 68 "email='help@siteglide.com'&password='my_super_secure_password'"
Login successful
No content
POST /api/public/general/sessions/recoverPassword HTTP/1.1 Host: Content-Type: application/json Accept: */* Content-Length: 46 { "payload": { "email": "text", "resetURL": "text" } }
If the email address you provided is correct, we will send you a reset link shortly
POST /api/public/general/sessions/checkTemporaryToken HTTP/1.1 Host: Content-Type: application/json Accept: */* Content-Length: 28 { "payload": { "email": "text" } }
The result contains the User's Temporary Token
POST /api/public/general/sessions/resetPassword HTTP/1.1 Host: Content-Type: application/json Accept: */* Content-Length: 62 { "payload": { "userID": "text", "password": "text", "token": "text" } }
Your password has been updated. You can now log in.