Auth

Authenticates a user and returns login information.

post
/auth/login
Body
passKeystringRequired
Responses
post
/auth/login
POST /v1/auth/login HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 18

{
  "passKey": "text"
}
{
  "roles": [
    "user"
  ],
  "userId": "text",
  "accessToken": "text"
}

Last updated

Was this helpful?