API Documentation
Authentication
Obtain a token for API access
POST
/
auth
/
token
Authorization
Query
curl --request POST \
--url http://localhost:8001/auth/token
{
"access_token": "<string>",
"token_type": "<string>"
}
Use your username
and password
to retrieve a token with specified scopes.
Query Parameters
username
string
requiredpassword
string
requiredResponse
200 - application/json
access_token
string
requiredtoken_type
string
requiredcurl --request POST \
--url http://localhost:8001/auth/token
{
"access_token": "<string>",
"token_type": "<string>"
}