Endpoint Auth
Endpoint Auth
This endpoint allows you to use a valid username and password pair to obtain a token, the token has a current duration of 5 minutes, allowing use of the API.
Method: POST
Content-Type: application/json
Path: api/token/
Payload: {
username: string,
password: string
}
Answer: {
access:string,
refresh: string
}