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
| Method | URL |
|---|---|
| GET | /builtInProfile/internal/info |
Request Header
| Name | Required | Description |
|---|---|---|
| Authorization | required | User 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
| Name | Type | Description |
|---|---|---|
| code | int | Success status (Success:0) |
| data | JsonArray | Built-in Profile List |
| key | string | Attribute Name |
| value | string | Attribute value |
| desc | string | Attribute Details |
| use | string | Use of Attributes |
| additionalInformation | string | Attribute 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"
}