cURL
curl --request POST \ --url https://api.cuddles.care/v1/accounts/oauth/token/refresh \ --header 'Authorization: Bearer <token>' \ --header 'x-realm: <x-realm>'
{ "access_token": "<your access token>", "refresh_token": "<your refresh token>", "id_token": "<your id token>", "scope": "openid profile email offline_access", "expires_in": 86400, "token_type": "Bearer" }
Re-issue the access token from refresh token
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Authentication scheme
200 OK - Success
The response is of type object.
object