UpdateEvents

 

NotificationService / UpdateEvents

 

Description: Update events

URL: http://{your-server-url}/api/v1/core/notifications/events

Method: PUT

Token Required: True


Request Headers:
content-type: application/json or content-type: application/xml
token: {token}
Rights:

Type: Nexus.AppSpace.Service.Contract.Model.Enums.Rights.Rights

Right Require
Account_Management Yes

Request:

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

Response:

Type: Nexus.AppSpace.Service.Contract.Messages.AppSpaceIntegration.v1.Notification.NotificationResponse

Parameter Type
Response.Events Nexus.AppSpace.Service.Contract.Model.DTO.AppSpaceIntegration.v1.Notifications.Event[]

Enums:
Field Name Values
Level Nexus.AppSpace.Service.Contract.Model.Enums.Notification.Level Info = 0, Warn = 1, Error = 2

The following is an example request Xml body:
<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:Id>123</a:Id>
      <a:Level>Error</a:Level>
      <a:Name>String</a:Name>
      <a:Template>String</a:Template>
    </a:Event>
  </Events>
</NotificationRequest>

The following is an example request Json body:
{
	"Events":[
		{
			"Code":"String",
			"GlobalizationDictionaryKey":"String",
			"Id":123,
			"Level":2,
			"Name":"String",
			"Template":"String"
		}
	]
}

The following is an example response Xml body:
<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>

The following is an example response Json body:
{
	"DebugMessage":"String",
	"Errors":[
		{
			"Code":"String",
			"Message":"String",
			"StackTrace":"String"
		}
	],
	"Status":1,
	"Events":[
		{
			"Code":"String",
			"GlobalizationDictionaryKey":"String",
			"Id":123,
			"Level":2,
			"Name":"String",
			"Template":"String"
		}
	]
}