cURL
curl --request POST \ --url https://api.example.com/authorization/refresh \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "refreshToken": "<string>" } '
{ "expires": "2023-11-07T05:31:56Z", "accessToken": "<string>", "refreshToken": "<string>" }
Refresh the authorization token and return new credentials.
Refresh token request.
String of the JWT refresh token.
OK
A date and time when the token expired.
The access token.
The refresh token.
Was this page helpful?