curl --request POST \
--url https://api.example.com/authenticate \
--header 'Content-Type: application/json' \
--data '
{
"username": "<string>",
"password": "<string>"
}
'{
"jwt": "<string>",
"expires": 123
}Authenticate with email and password. Returns a JWT.
curl --request POST \
--url https://api.example.com/authenticate \
--header 'Content-Type: application/json' \
--data '
{
"username": "<string>",
"password": "<string>"
}
'{
"jwt": "<string>",
"expires": 123
}