Ultralike

API Reference

POST

Login

Autentica usuario e retorna token de sessao.

/auth/login

Body/Params

email(body)

string - obrigatorio - Email

senha(body)

string - obrigatorio - Senha

Exemplos de resposta

200

{
  "success": true,
  "data": {
    "token": "<jwt>"
  }
}

Try It

URL final

https://api.aishabot.online/api/auth/login

cURL Request

curl --request POST \
  --url 'https://api.aishabot.online/api/auth/login' \
  --header 'accept: application/json' \
  --header 'content-type: application/json' \
  --data '{
  "email": "admin@empresa.com",
  "senha": "123456"
}'

Response

Ainda sem resposta.