Skip to main content

4) Log Type (EVENT) Information Retrieval

API

MethodSKMS Service URL
POST/api/internal/getEventList

Request Header

NameRequiredDescription
AuthorizationrequiredUser authentication method, JWT value
Authorization: Bearer {JWT}
Note: The JWT value is issued through the authentication/authorization service.

Request Body

NameRequiredTypeDescription
brandNamerequiredstringbrandName stored in the integrated log (CDFEKMS / CDFSKMS / CypherDocsFlow)

Response

NameTypeDescription
eventListJson[]Event Keywords and Multilingual Information
eventList.eventstringEvent Keywords
eventList.kostringEvent Keyword Korean Name
eventList.enstringEvent Keyword English Name
eventList.jastringEvent Keyword Japanese Name

Examples

Request

  • Body
{
"brandName": "CypherDocsFlow"
}

Response

  • success
{
"eventList": [
{
"event": "ENCRYPT",
"ko": "암호화",
"en": "Encryption",
"ja": "暗号化"
},
{
"event": "ENCRYPT_SKIP",
"ko": "암호화 스킵",
"en": "Skip encryption",
"ja": "暗号スキップ"
},
{
"event": "DECRYPT",
"ko": "복호화",
"en": "Decryption",
"ja": "復号化"
},
{
"event": "DECRYPT_SKIP",
"ko": "복호화 스킵",
"en": "Skip decryption",
"ja": "復号化スキップ"
}
]
}
  • failure
{
"code": 40001,
"message": "Invalid token"
}