POST api/AuditLog/log
Request Information
URI Parameters
None.
Body Parameters
Collection of NotificationLogDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | integer |
Required |
|
| NotificationChannelBK | byte |
Required |
|
| SentDate | date |
Required |
|
| Content | string |
None. |
|
| RecipientInfo | string |
Required |
|
| NotificationId | integer |
Required Range: inclusive between 1 and 2147483647 |
|
| ReferredTableBK | byte |
Required |
|
| IsSuccess | boolean |
None. |
|
| Comments | string |
None. |
|
| AdditionalData | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"UserId": 3,
"NotificationChannelBK": 64,
"SentDate": "2026-05-30T12:39:30.7507069+00:00",
"Content": "sample string 6",
"RecipientInfo": "sample string 7",
"NotificationId": 8,
"ReferredTableBK": 64,
"IsSuccess": true,
"Comments": "sample string 11",
"AdditionalData": "sample string 12"
},
{
"UserId": 3,
"NotificationChannelBK": 64,
"SentDate": "2026-05-30T12:39:30.7507069+00:00",
"Content": "sample string 6",
"RecipientInfo": "sample string 7",
"NotificationId": 8,
"ReferredTableBK": 64,
"IsSuccess": true,
"Comments": "sample string 11",
"AdditionalData": "sample string 12"
}
]
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ResponseDataOfAuditLogResultDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| IsSuccess | boolean |
None. |
|
| IsError | boolean |
None. |
|
| ResponseMessage | string |
None. |
|
| ErrorCode | integer |
None. |
|
| Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsSuccess": true,
"IsError": true,
"ResponseMessage": "sample string 3",
"ErrorCode": 4,
"Data": {}
}