Authentication
Login
POST
/
auth
/
login
curl --request POST \
--url https://example.com/api/auth/login \
--header 'Content-Type: application/json' \
--data '{
"username": "<string>",
"password": "<string>"
}'
{
"access_token": "<string>"
}
Body
application/json
Response
200
application/json
Successful Response
The response is of type object
.
curl --request POST \
--url https://example.com/api/auth/login \
--header 'Content-Type: application/json' \
--data '{
"username": "<string>",
"password": "<string>"
}'
{
"access_token": "<string>"
}