Skip to main content

To get refresh token

POST 

/api/v1/token-refresh

After the successful login, you need to update the refresh token for every 15 minutes.

For this API, the payload is transmitted in plain format. Encryption or decryption of the payload is not required before sending the request to the server or when processing the server response.

🔋 Sample request payload

{
"refreshToken": "def5020051586e6138944cc871..."
}

🎯 Important Note:


Payload Encryption : Not required. The payload must be sent in plain format without applying Hesabe encryption method.


Payload Decryption: Not required. The response from the server can be consumed directly without Hesabe decryption method.

⚡️ Payload details

Fields NameDescriptionRequired
refreshTokenPass the current refresh token ✅ Yes

Request

Responses

Successfully fetched, Save the refresh token for further requests