cURL
curl --request POST \ --url https://api.dynamosql.com/v1/auth/refresh \ --header 'Content-Type: application/json' \ --data ' { "refreshToken": "<string>" } '
{ "success": true, "data": { "accessToken": "<string>", "expiresIn": 3600, "tokenType": "Bearer" }, "error": { "message": "<string>", "code": "<string>", "requestId": "<string>" } }
Exchange a refresh token for a new access token.
The refresh token from a previous authentication.
Token refreshed successfully.
true when the request was processed without errors, false otherwise. Always present.
true
false
Show child attributes
Present in the response body when success is false.
success