Skip to main content
POST
/
api
/
v1
/
auth
/
refresh
Refresh Token
curl --request POST \
  --url https://api.member.dev/api/v1/auth/refresh \
  --header 'Authorization: Bearer <token>'
{
  "access_token": "<string>",
  "expires_in": 123,
  "refresh_token": "<string>",
  "token_type": "Bearer"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/vnd.api+json

Successful Response

access_token
string
required
expires_in
integer
required
refresh_token
string
required
token_type
string
default:Bearer