Logging Client Events
Note
As of Ad Server v3, the POST /events/<token>/clientevent
endpoint URI has been changed to the below endpoint. The endpoint behavior and input have not changed, only the URI, and the old endpoint URI will continue to work for all clients.
Use this endpoint for logging client events, and user activities that require monitoring when using the Cardlytics OPS API.
1 |
|
Input Parameters
In addition to the query parameter, this endpoint requires a JSON body be posted.
Path Param | Type | Required | Description |
---|---|---|---|
token | string | Required | The security token for the customer |
JSON Prop | Type | Required | Description |
---|---|---|---|
clientEventCommand | ClientEventMessage[] | Required | A list of client event messages |
Output
This endpoint returns an HTTP response indicating success (200) or failure (500).
Example
Request
1 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
|