NCC
  1. Token
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. Token

Introspect token

Develop Env
https://auth-dev.chieuphimquocgia.com.vn/ums
Develop Env
https://auth-dev.chieuphimquocgia.com.vn/ums
POST
/api/v1/token/ncc-internal/introspect
API dùng để kiểm tra tính hiệu lực của access_token, dành cho các dịch vụ khác gọi vào để xác thực access_token

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/token/ncc-internal/introspect' \
--header 'Content-Type: application/json' \
--data-raw '{
    "token": "laboris velit in sit et"
}'
Response Response Example
{
    "sub": "string",
    "exp": 0,
    "iat": 0,
    "azp": "string",
    "sid": "string",
    "iss": "string",
    "username": "string",
    "preferred_username": "string",
    "email": "string",
    "given_name": "string",
    "family_name": "string",
    "created_at": "string",
    "name": "string",
    "email_verified": true,
    "scope": "string"
}
Modified at 2025-09-05 08:51:00
Previous
Logout user
Next
Health Check
Built with