Versions Compared

Key

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

...

The input data is sent in JSON format as the body of a POST request. The input data format is the following:

Code Block
[{
   {
    "date": 1610352661069,  //optional
   
    "ip": "1.1.1.1"         // optional
		    "eventData": {	
			
      [...]
		} 	},   }
 { },
  {
    "date": 1610352661069,  //optional
   
    "ip": "1.1.1.1"         // optional
		    "eventData": {	
			    [...]
    		}
	  },
]

The eventData dependes on the type of event (sinkId) that is being tracked.

...