Teamforge token API

I’m trying to request an API token from a Teamforge server.

The curl command works:

curl -POST $site_url/oauth/auth/token -d "grant_type=password&client_id=api-client&scope=$scope&username=$username&password=$password"

I’m having trouble getting Postman to do it though. I keep getting an error:

{
  "error_description": "Invalid grant",
  "error": "invalid_grant"
}

Does anyone have any suggestions?

@cawhite1 Can you share a screenshot of your Postman window with the request open? You’ll need to use the x-www-form-urlencoded body type to enter the parameters.