Skip to main content

3) View Built-in Profiles by Company in Security365

View Built-in Profiles by Company in Security365

  • Excluding TENANT_APP_ID, TENANT_APP_SECRET items

API

MethodURL
GET/builtInProfile/internal/info

Request Header

NameRequiredDescription
AuthorizationrequiredUser authentication method, JWT value
Authorization: Bearer {JWT}

[For Client Business System]
The JWT value is issued through the JWT (token) issuance API of the SKMS service.

[For Security365 Service]
The JWT value is issued through the authentication/authorization service.
- The companyId is added after the JWT.
- Entered in the form of JWT@@SKMS_SEPARATOR@@COMPANYID
- Parse and use with @@SKMS_SEPARATOR@@ as the delimiter.

Response

NameTypeDescription
codeintSuccess status (Success:0)
dataJsonArrayBuilt-in Profile List
   keystringAttribute Name
   valuestringAttribute value
   descstringAttribute Details
   usestringUse of Attributes
   additionalInformationstringAttribute Description

Examples

Response

  • Built-in profile retrieval successful
{
"code": 0,
"data": [
{
"key": "KEY_VAULT_OPTION",
"value": "E",
"use": true
},
{
"key": "KEY_UPDATE_TIME",
"value": "1747062001170|809",
"use": true,
"addInfo": "키 정보 최종 업데이트 시간"
},
...(생략)
]
}
  • Token validation failed
{
"code": 40101,
"message": "Invalid token",
"detail": "invalid_token"
}
  • Internal Service Failure
{
"code": 50001,
"message": "An unexpected error has occurred in the internal system"
}