Pular para o conteúdo principal
POST
/
api
/
v1
/
auth
/
jwt
/
login
Log in with email and password
curl --request POST \
  --url https://api.izap.ai/api/v1/auth/jwt/login \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data [email protected] \
  --data 'password=<string>'
{
  "access_token": "eyJhbGciOiJIUzI1NiIs...",
  "refresh_token": "R0k3q1n7x9...",
  "token_type": "bearer"
}

Corpo

application/x-www-form-urlencoded
username
string<email>
obrigatório

Account email address.

password
string<password>
obrigatório

Resposta

Authenticated successfully.

access_token
string
refresh_token
string
token_type
string
Exemplo:

"bearer"