Skip to main content
POST
/
auth
/
login
JWT Authorization by User Credentials
curl --request POST \
  --url https://api.projectcor.com/v1/auth/login \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data email=jsmith@example.com \
  --data 'password=<string>'
{
  "access_token": "<string>",
  "token_type": "<string>",
  "expires_in": 123,
  "refresh_token": "<string>"
}

Body

application/x-www-form-urlencoded
email
string<email>
required

User E-Mail

password
string<password>
required

User Password

Response

200 - application/json

Successfully authenticated

access_token
string
token_type
string
expires_in
integer
refresh_token
string