Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

XML Request

JSON Request

Expand
titleXML
<?xml version="1.0" encoding="UTF-8" ?>
<universalEvent>
  <name>ExampleEvent</name>
  <businessServices>
    <businessService>BusinessServiceName1</businessService>
    <businessService>BusinessServiceName2</businessService>
  </businessServices>
  <ttl>60</ttl>
  <attributes>
    <attribute>
      <name>example_attribute1</name>
      <value>Value1</value>
    </attribute>
    <attribute>
      <name>example_attribute2</name>
      <value>Value2</value>
    </attribute>
  </attributes>
</universalEvent>
Expand
titleJSON
{
   "name": "ExampleEvent",
   "businessServices": [
      "BusinessServiceName1",
      "BusinessServiceName2"
    ],
	    "ttl": 60,
	    "attributes": [
		{
			
       {
          "name": "example_attribute1",
			
          "value": "Value1"
		       },
		{
			
       {
          "name": "example_attribute2",
			          "value": "Value2"
		}
	       }
    ]
}

Universal Event Publishing: Request Properties

...