To get refresh token
POST/api/v1/token-refresh
After the successful login, you need to update the refresh token for every 15 minutes
🔋 Sample request payload
{
"refreshToken": "def5020051586e6138944cc871..."
}
🎯 Note: Payload must be encrypted before being sent to the server. To access the response data, decrypt it upon receiving the response from the server
⚡️ Payload details
Fields Name | Description | Required |
---|---|---|
refreshToken | Pass the current refresh token | ✅ Yes |
Request
Responses
- 200
- 404
- 500
Successfully fetched, Save the refresh token for further requests
Not found, Please verify the token credentials
Internal Server Error – An unexpected error occurred on the server while processing the request. This may be due to a temporary issue or a server-side malfunction. Please try again later or contact support if the issue persists.