Skip to main content
POST
Refresh access token
Use the refresh token obtained from the Lender Login endpoint to obtain a new access token without re-authenticating with email and password. This enables seamless token rotation for long-running integrations.

Request

Endpoint

Body Parameters

string
required
The refresh token obtained from the Lender Login response.

Example Request

Response

Token Refresh Flow

Implement automatic token refresh in your integration. When any API call returns a 401 response, call the refresh token endpoint and retry the failed request with the new access token.

Path Parameters

lender
string
required

Your lender subdomain identifier.

Body

application/json
refreshToken
string
required

The refresh token obtained from the Lender Login response.

Example:

"eyJhbGciOiJIUzUxMiJ9..."

Response

Token refreshed successfully

token
string

New access token. Use as a Bearer token in the Authorization header.