POST
/
api
/
v1
/
auth
/
login
curl --request POST \
  --url https://chat.api.toolzz.com.br/api/v1/auth/login \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "<string>",
  "password": "<string>"
}'
{
  "user": {
    "id": "<string>",
    "name": "<string>",
    "email": "<string>",
    "institutionId": "<string>",
    "institutionName": "<string>",
    "isActive": true,
    "manualPayment": true,
    "token": "<string>",
    "verified": true,
    "hasPassword": true,
    "superAdmin": true,
    "members": [
      {}
    ],
    "isMember": true
  }
}

Parameters

email
string

Email of the account

password
string

Password of the account

Response Description

Below you will see the description of the get Login response

user
object
required

Details of the user.