Resource Owner Flow
Request
curl --request POST \
--url 'https://auth.loomai.com/oauth/token' \
--header 'content-type: application/x-www-form-urlencoded' \
--data grant_type=http://auth0.com/oauth/grant-type/password-realm \
--data realm=Username-Password-Authentication \
--data audience=https://api.loomai.com/ \
--data client_id={CLIENT_ID} \
--data client_secret={CLIENT_SECRET} \
--data username={USERNAME} \
--data password={PASSWORD}
Response
Last updated
Was this helpful?