POST
/
connect-auth
/
v1
/
account
/
refresh-token
cURL
curl --request POST \
  --url https://api.eka.care/connect-auth/v1/account/refresh-token \
  --header 'Authorization: <authorization>' \
  --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>"
}

Headers

Authorization
string
required
Example:

"Bearer <access_token>"

Body

application/json

Response

200
application/json

OK

The response is of type object.