Response
Successful Response
curl --request POST \
--url https://example.com/api/auth/login \
--header 'Content-Type: application/json' \
--data '{
"username": "<string>",
"password": "<string>"
}'
{
"access_token": "<string>"
}
curl --request POST \
--url https://example.com/api/auth/login \
--header 'Content-Type: application/json' \
--data '{
"username": "<string>",
"password": "<string>"
}'
{
"access_token": "<string>"
}
Successful Response