POST
/
v1
/
token
/
login
cURL
curl --request POST \
  --url https://api.comm.com/api/v1/token/login \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "jsmith@example.com",
  "password": "<string>",
  "remember": true
}'
{
  "access_token": "<string>",
  "token_type": "bearer",
  "expires_in": "<string>"
}

Body

application/json
email
string<email>
required
password
string
required
remember
boolean

Response

access_token
string
required
token_type
string
required
Example:

"bearer"

expires_in
string
required