Copy
curl -i -X POST \
-u <username>:<password> \
http://localhost:8080/auth/token \
-H 'Content-Type: application/x-www-form-urlencoded' \
-H 'moneykit-version: 2023-02-18' \
-d grant_type=string \
-d scope= \
-d client_id=string \
-d client_secret=string
Copy
{
"access_token": "52ea3d1b4f9a53fffb67...",
"token_type": "bearer",
"expires_in": 3600
}