Authentication
Authenticating and Obtaining a Token
https://dashboard.qntv.io/api/signin/ Request
{
"email":"[email protected]",
"password":"yourpassword"
}Response
{
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6...",
"user": {
"ID": 1,
"userID": 1,
"createdAt": "2023-05-15T08:52:09.15693Z",
"updatedAt": "2023-05-15T08:52:09.163817Z",
"DeletedAt": null,
"accountID": 1,
"name": "You",
"email": "[email protected]",
"status": 1,
"role": 1
}
}Usage
Examples
CURL
Python Example
Last updated