For the complete documentation index, see llms.txt. This page is also available as Markdown.

User Authentication API

API calls for user authentication (credential validation).

Base path: /login/


Authenticate User

Performs the user authentication procedure on the platform to validate credentials.

POST /login/

Request Body

Field
Type
Request
Description

email

string

Yes

User authentication email

password

string

Yes

User authentication password

Sample request

{
  "email": "nome@dominio.com.br",
  "password": "minhasenha"
}

Response

Status: 200 OK

Last updated

Was this helpful?