Password Auth
POST
/auth/password
curl \
-X POST https://ppammedellin.com/auth/password \
-H "Content-Type: application/json" \
-d '{"username":"string","password":"string"}'
Request example
{
"username": "string",
"password": "string"
}
Response examples (200)
{
"accessToken": "string",
"tokenType": "string",
"user": {}
}
Response examples (422)
{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string"
}
]
}