CSL Pay Developers

Refresh Token

POST /auth/refresh/token

The Refresh Token endpoint is used to obtain a new access token when the existing one is about to expire or has expired. A partner would call this endpoint when they need to refresh their access token to maintain an active session with the CSL Pay platform. This is typically done in the background, allowing the partner to continue making API requests without interruption.

Types inferred from examples. This endpoint came from a Postman collection, which declares no schema — field types are read from the example values and no field is marked required.

Request body

  • refreshToken string
    Duplicate field, please use 'refreshToken' instead.

Response 200

  • token string
    The new access token obtained through the refresh process.
  • expiresIn integer
    The number of seconds until the new access token expires.
  • refreshExpiresIn integer
    The number of seconds until the refresh token expires.
  • refreshToken string
    Duplicate field, please use 'refreshToken' instead.
  • tokenType string
    The type of the new access token, typically 'Bearer'.