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

Login user

Develop Env
https://auth-dev.chieuphimquocgia.com.vn/ums
Develop Env
https://auth-dev.chieuphimquocgia.com.vn/ums
POST
/api/v1/auth/ncc-internal/login
API xác thực người dùng nội bộ của trung tâm NCC dựa trên username và password

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/login' \
--header 'Content-Type: application/json' \
--data-raw '{
    "username": "Dr. Vanessa Bechtelar",
    "password": "_LPJJ2qQiuivdFi"
}'
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:53:09
Next
Refresh token
Built with