post https://api.coviu.com/v1/auth/token
Request an access token using one of the supported OAuth2 grant types:
Client Credentials
-
HTTP Basic Auth, passing the Client ID and Client Secret as the username and password
-
application/x-www-form-urlencoded
data, containing:{ grant_type: "client_credentials" }
Authorization Code
-
HTTP Basic Auth, passing the Client ID and Client Secret as the username and password
-
application/x-www-form-urlencoded
data, containing:-
{ grant_type: "authorization_code", code: "eyJ0eXAi...." }
-
Refresh Token
-
HTTP Basic Auth, passing the Client ID and Client Secret as the username and password
-
application/x-www-form-urlencoded
data, containing:-
{ grant_type: "refresh_token", refresh_token: "eyJ0eXAi...." }
-