Authentication

This Endpoint use POST method to get a token that must be use for the next endpoints. Request your credentials and the base_url.

Endpoint
POST https://{{base_url}}/rest-auth/login/

Request and response format an explanation of every field

Request
{
  "username": "test@test.com",
  "password": "test credential"
}
Response
{
    "key": "YOUR_NEW_TOKEN"
}

You must add the next key to the request headers

keyvalue
authenticationtoken {{YOUR_NEW_TOKEN}}