Last updated
Last updated
POST
https://pm415.com/api/account/login
Retrieves a valid token that can be set as Bearer
in the authorization header. Alternatively, you can use an API key from your user profile.
POST
https://pm415.com/api/account/forgotpassword
Sends a message to user with a password reminder.
POST
https://pm415.com/api/account/register
Register an account for a new organization.
POST
https://pm415.com/api/account/register
Registers users to an existing org. Requires the invitation token that was sent to them by the user that registered the org and invited them.
GET
https://pm415.com/api/account/verify?token=eyJiUf3556
Verifies user account using token from verification email.
POST
https://pm415.com/api/account/changepassword
Changes password based on forgotten password action, which can only be initiated from a browser. Token must be valid for the request.
object
{"email" : "mattreider@tmail.com"}
object
{"email" : "mattreider@tmail.com",
"password": "1111",
"confirmation": "1111",
"firstName": "Matt",
"lastName": "Reider",
"tosAccepted": "Y",
"organization": "MyOrg"}
object
{"email" : "mattreider@tmail.com", "password": "1111", "confirmation": "1111", "firstName": "Matt", "lastName": "Reider", "tosAccepted": "Y", "token": "934flsdf94rjsdnk92"}
token
string
Token that was sent in the verification email.
object
{"password" : "1111",
"confirmation": "1111",
"token" : "eyJhbGciOiJIUzIY45gBT7TkTbQ"}
These methods allow you to login, get tokens, register, and change passwords.
object
{"email":"mattreider@tmail.com", "password":"reider1"}