POST
/
connect-auth
/
v1
/
account
/
refresh
curl --request POST \
  --url https://api.eka.care/connect-auth/v1/account/refresh \
  --header 'Content-Type: application/json' \
  --data '{
  "access_token": "<string>",
  "refresh_token": "<string>"
}'
{
  "access_token": "<string>",
  "expires_in": 123,
  "refresh_expires_in": 123,
  "refresh_token": "<string>"
}

Body

application/json
refresh_token
string
required
access_token
string

Response

200
application/json
OK
access_token
string
expires_in
integer

Access token expiry in seconds

refresh_expires_in
integer

Refresh token expiry in seconds

refresh_token
string