Use the refresh token to get a new JWT access token
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Request Code Samples
curl --location --request POST '/security/refresh' \
--header 'Authorization: Bearer <token>'
Responses
{
"access_token": "string"
}
Modified at 2025-10-22 13:16:30