POST
/
v1
/
login
cURL
curl --request POST \
  --url https://search.tratum.com.br/v1/login \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "<string>",
  "password": "<string>"
}'
{
  "email": "<string>",
  "username": "<string>",
  "token": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Corpo da requisição

The body is of type object.

Response

200
application/json

Retorno com sucesso da autenticação

The response is of type object.