4) Log Type (EVENT) Information Retrieval
Querying the log EVENT keywords and names (multilingual) related to SDF services in the SKMS service.
API
| Method | SKMS Service URL |
|---|---|
| POST | /api/internal/getEventList |
Request Header
| Name | Required | Description |
|---|---|---|
| Authorization | required | User authentication method, JWT value Authorization: Bearer {JWT}Note: The JWT value is issued through the authentication/authorization service. |
Request Body
| Name | Required | Type | Description |
|---|---|---|---|
| brandName | required | string | brandName stored in the integrated log (CDFEKMS / CDFSKMS / CypherDocsFlow) |
Response
| Name | Type | Description |
|---|---|---|
| eventList | Json[] | Event Keywords and Multilingual Information |
| eventList.event | string | Event Keywords |
| eventList.ko | string | Event Keyword Korean Name |
| eventList.en | string | Event Keyword English Name |
| eventList.ja | string | Event 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"
}