Skip to main content

2) Security365 Company-Specific Built-in Profile View and Update

View Built-in Profiles by Company in Security365

API

MethodURL
POST/builtInProfile/info/all

Request Header

NameRequiredDescription
AuthorizationrequiredUser authentication method, JWT value
Authorization: Bearer {JWT}
- Note: The JWT value is issued through the authentication/authorization service.
- Note: The token must be issued with the companyId included in the request body.

Request Body

NameRequiredTypeDescription
companyIdrequiredstringcompanyId registered in the Security365 SHIELD ID service

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": "TENANT_APP_ID",
"value": "9a24cf56-aeb0-468d-a15a-f27bf8aa0a95",
"use": true,
"additionalInformation": "회사별 App Id"
},
{
"key": "TENANT_APP_SECRET",
"value": "IictJisoIywlJSUoKSQmKSQlJCwnISIsJCgsKyotISo",
"use": true,
"additionalInformation": "회사별 App Secret"
},
...(생략)
]
}
  • Token validation failed
{
"code": 40101,
"error": "invalid_token",
"message": "Invalid token."
}
  • No matching companyId
{
"code": 40102,
"error": "Failed",
"message": "No matching company ID found"
}
  • Internal Service Failure
{
"code": 50001,
"error": "server_error",
"message": "An unexpected error has occurred in the internal system."
}

Security365 Company-Specific Built-in Profile Update

API

MethodURL
POST/builtInProfile/info/update

Request Header

NameRequiredDescription
AuthorizationrequiredUser authentication method, JWT value
Authorization: Bearer {JWT}
- Note: The JWT value is issued through the authentication/authorization service.
- Note: The token must be issued with the companyId included in the request body.

Request Body

NameRequiredTypeDescription
companyIdrequiredstringcompanyId registered in the Security365 SHIELD ID service
datarequiredarrayBuilt-in Profile List
   keyrequiredstringAttribute Name
   valuerequiredstringAttribute value
   descrequiredstringAttribute Details
   userequiredstringUse of Attributes
   additionalInformationrequiredstringAttribute Description

Response

NameTypeDescription
codeintSuccess status (Success:0)
messagestringResponse content

Examples

Response

  • Built-in profile update successful
{
"code": 0,
"message" : "BuiltIn Profile Update Successfully"
}
  • Token validation failed
{
"code": 40101,
"error": "invalid_token",
"message": "Invalid token."
}
  • No required parameters
{
"code": 40105,
"error": "Failed",
"message": "Missing required input values"
}
  • Internal Service Failure
{
"code": 50001,
"error": "server_error",
"message": "An unexpected error has occurred in the internal system."
}