Refresh access token

refresh access token

GET

Parameters

Query Parameters

Organization_id
Organization ID
Status codeDescription
200access token response
400Bad request error - the request contains invalid parameters or malformed data
500Internal server error - an unexpected error occurred on the server
cURL
curl -L \
"https://blockv-labs.io/wallet/refresh-token?organization_id={organization_id}" \
-H 'Accept: application/json'
Response
{
"access_token": "string"
}
json
{
"type": "object",
"required": [
"access_token"
],
"properties": {
"access_token": {
"type": "string",
"description": "New JWT access token generated from a valid refresh token"
}
}
}