Post a list of new events to the server. Must provide a session_id with the request, and each event must have a name. No more than 100 events can be sent in a single request body.

Parameters

  • session_id (string, 548223f2c7036020742ff21c) ... Taplytics id of the current user session you wish to send an event for

Headers

application/json; charset=utf-8)

Request Body (application/json; charset=utf-8)

[{
    "name": "Purchase",
    "date": "2015-01-06T03:50:57+00:00",
    "value": 42,
    "metaData": {
        "occupation": "Bug Fixer",
        "favourite movie": "You Don't Mess With The Zohan"
    }
}]

Response

200 - All Events Saved

Create New Events

URL

https://api.taplytics.com/v2/events{?api_token}

Headers

application/json; charset=utf-8

Response Body

all events saved
Language