get
https://www.bankingcircleconnect.com/api/v1/authorizations/authorize
Obtain JsonWebToken for M2M user
- Use Authorization header "Basic Auth".- The credentials format has to be base64 encoded "username", "colon" and "password".
- Example:
WebRequest req = WebRequest.Create("/api/v1/authorizations/authorize");
req.Headers["Authorization"] = "Basic " + base64Encoded("username:password");
- For more detailed information: The 'Basic' HTTP Authentication Scheme "
