Skip to main content
POST
/
api
/
v1
/
auth
/
refresh
Refresh an access token
curl --request POST \
  --url https://app.mlm-platform.com/api/v1/auth/refresh \
  --header 'Content-Type: application/json' \
  --header 'x-tenant-api-key: <api-key>' \
  --data '
{
  "refreshToken": "<string>"
}
'
{
  "accessToken": "<string>",
  "refreshToken": "<string>",
  "tokenType": "Bearer",
  "expiresIn": 123
}

Authorizations

x-tenant-api-key
string
header
required

Tenant API key for authentication

Body

application/json
refreshToken
string
required

Response

Token refreshed

accessToken
string
refreshToken
string
tokenType
enum<string>
Available options:
Bearer
expiresIn
integer