NCC
  1. Auth
NCC
  • Auth
    • Login user
      POST
    • Refresh token
      POST
    • Logout user
      POST
  • Token
    • Introspect token
      POST
  • Health
    • Health Check
      GET
  • Schemas
    • Schemas
      • LoginResponseDto
      • LoginParamDto
      • RefreshTokenParamDto
      • AuthLogoutParamDto
      • TokenIntrospectParamDto
      • TokenPayloadDto
      • AnvuiUserPayloadDto
  1. Auth

Refresh token

Develop Env
https://auth-dev.chieuphimquocgia.com.vn/ums
Develop Env
https://auth-dev.chieuphimquocgia.com.vn/ums
POST
/api/v1/auth/ncc-internal/refresh
API cấp lại refresh_token sau khi access_token hết hạn, giữ phiên làm việc cho tài khoản nội bộ trung tâm NCC

Request

Body Params application/json

Examples

Responses

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://auth-dev.chieuphimquocgia.com.vn/ums/api/v1/auth/ncc-internal/refresh' \
--header 'Content-Type: application/json' \
--data-raw '{
    "refreshToken": "occaecat officia Excepteur"
}'
Response Response Example
{
    "access_token": "string",
    "expires_in": 0,
    "refresh_token": "string",
    "refresh_expires_in": 0,
    "token_type": "string",
    "scope": "string"
}
Modified at 2025-09-05 08:49:16
Previous
Login user
Next
Logout user
Built with