Refresh token
POST
/auth/refresh
auth
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://transactions.srblabs.io/api/v1/auth/refresh' \
--header 'Content-Type: application/json' \
--data-raw '{
"refresh_token": "string"
}'
Response Response Example
200 - Example 1
{
"access_token": "string",
"expires_at": 0,
"expires_in": 0,
"mfa_required": true,
"refresh_expires_at": 0,
"refresh_token": "string",
"token_type": "string",
"user_id": "string"
}
Request
Body Params application/json
Responses
Modified at 2025-04-30 01:06:49