Refresh Token
Refresh Token
POST
/auth-service/v1/refresh
Headers
Name
Value
Content-Type
application/json
Body
Name
Type
Description
refresh_token
string
Refresh token which received from attempt or register route
Response
{
"auth": {
"access_token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9....",
"refresh_token": "IMov9vEqKsNSr4fLMd5lbpwZ4MBohzM7bOTePk...",
"token_type": "bearer",
"expires_in": 3600
},
"user": {
"id": 1,
"uuid": "d64f5a42-ccee-412c-add5-a75f2d3f0c46",
"country_id": 1,
"rank_id": 1,
"partner_id": null,
"referral_code": null,
"name": "RichOstrich#1584",
"first_name": null,
"last_name": null,
"birth_date": null,
"gender_type": "Male",
"email": "test@test.com",
"phone": null,
"language": "en",
"kyc_level_type": "NonVerified",
"blocked": false,
"block_reason": null,
"loyalty_score": 0,
"password_updated_at": null,
"kyc_verified_at": null,
"email_verified_at": "2025-03-24T09:42:34.000000Z",
"blocked_at": null,
"blocked_until": null,
"created_at": "2025-03-24T09:42:34.000000Z",
"updated_at": "2025-03-24T09:42:34.000000Z",
"rank": {
"id": 1,
"title": "Test Rank (FOR INTERNAL PURPOSES ONLY)",
"currency": "USD",
"level": 1,
"type": "ForReal",
"acceptance_strategy": "Persists",
"switch_amount": 15000000,
"withdraw_max_daily": 5000000,
"deposit_max_daily": 100000000,
"images": [],
"options": [],
"created_at": "2025-03-24T09:42:33.000000Z",
"updated_at": "2025-03-24T09:42:33.000000Z"
}
}
}
Last updated