Description: Create events
URL: http://{your-server-url}/api/v1/core/notifications/events
Method: POST
Token Required: True
content-type: application/json or content-type: application/xml
token: {token}
Type: Nexus.AppSpace.Service.Contract.Model.Enums.Rights.Rights
Right | Require |
---|---|
Account_Management | Yes |
Type: Nexus.AppSpace.Service.Contract.Messages.AppSpaceIntegration.v1.Notification.NotificationRequest
Parameter | Type | Nullable |
---|---|---|
Request.Events | Nexus.AppSpace.Service.Contract.Model.DTO.AppSpaceIntegration.v1.Notifications.Event[] | False |
Type: Nexus.AppSpace.Service.Contract.Messages.AppSpaceIntegration.v1.Notification.NotificationResponse
Parameter | Type |
---|---|
Response.Events | Nexus.AppSpace.Service.Contract.Model.DTO.AppSpaceIntegration.v1.Notifications.Event[] |
Field | Name | Values |
---|---|---|
Level | Nexus.AppSpace.Service.Contract.Model.Enums.Notification.Level | Info = 0, Warn = 1, Error = 2 |
<NotificationRequest xmlns="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Messages.AppSpaceIntegration.v1.Notification" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <Events xmlns:a="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Model.DTO.AppSpaceIntegration.v1.Notifications"> <a:Event> <a:Code>String</a:Code> <a:GlobalizationDictionaryKey>String</a:GlobalizationDictionaryKey> <a:Level>Error</a:Level> <a:Name>String</a:Name> <a:Template>String</a:Template> </a:Event> </Events> </NotificationRequest>
{ "Events":[ { "Code":"String", "GlobalizationDictionaryKey":"String", "Level":2, "Name":"String", "Template":"String" } ] }
<NotificationResponse xmlns="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Messages.AppSpaceIntegration.v1.Notification" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <DebugMessage xmlns="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Messages">String</DebugMessage> <Errors xmlns="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Messages"> <Error> <Code>String</Code> <Message>String</Message> <StackTrace>String</StackTrace> </Error> </Errors> <Status xmlns="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Messages">Success</Status> <Events xmlns:a="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Model.DTO.AppSpaceIntegration.v1.Notifications"> <a:Event> <a:Code>String</a:Code> <a:GlobalizationDictionaryKey>String</a:GlobalizationDictionaryKey> <a:Id>123</a:Id> <a:Level>Error</a:Level> <a:Name>String</a:Name> <a:Template>String</a:Template> </a:Event> </Events> </NotificationResponse>
{ "DebugMessage":"String", "Errors":[ { "Code":"String", "Message":"String", "StackTrace":"String" } ], "Status":1, "Events":[ { "Code":"String", "GlobalizationDictionaryKey":"String", "Id":123, "Level":2, "Name":"String", "Template":"String" } ] }