Toolzz AI
- Introduction
- Planos
- ChatService
- Auth
- Institution
- Unity
- Bot
- Widget
- GenAI
- Fallback
- Member
- Function
- Credential
- KnowledgeBase
- Voice
- Audio
- Toolzz Analytics
- Kratos
Auth
Post Login
Endpoint to make Login in institution
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 of the account
Password of the account
Response Description
Below you will see the description of the get Login response
Details of the user.
Unique identifier for the user.
Name of the user.
Email address of the user.
UUID of the associated institution (optional).
Name of the associated institution (optional).
Indicates whether the user’s account is active.
Indicates whether the user has enabled manual payment.
Authentication token for the user.
Indicates whether the user’s email is verified.
Indicates whether the user has a password set.
Indicates whether the user has super admin privileges.
List of members associated with the user.
Indicates whether the user is a member of an institution.
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
}
}
Assistant
Responses are generated using AI and may contain mistakes.