v1

latestOpenAPI 3.0.02026-08-06146.7 KB

Get client access token

Retrieve an access token to authorize your API request. By default, the access token is valid for 1 hour, you don't need to regenerate it every time before calling Mosaic APIs. <br><br> NOTE: The request type and examples depend on the service you choose

post/oidc/token

Response

Access token successfully retrieved

access_tokenstring required

The access token issued by the authorization server

token_typestring required

Returned as Bearer

expires_ininteger required

Expiration time of the access token in seconds

scopestring required

Scope of the access token

Example response

{
  "token_type": "Bearer",
  "expires_in": 3600
}