Events

post

Creates a new resource with data.

Body
experiment_idstringRequired
event_namestringRequired
propertiesobjectRequired
Responses
201
created
application/json
post
POST /events HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 60

{
  "experiment_id": "text",
  "event_name": "text",
  "properties": {}
}
{
  "id": "text",
  "experiment_id": "text",
  "event_name": "text",
  "properties": {}
}
get

Retrieves a list of all resources from the service.

Query parameters
$limitintegerOptional

Number of results to return

$skipintegerOptional

Number of results to skip

Responses
200
success
application/json
get
GET /events HTTP/1.1
Host: 
Accept: */*
[
  {
    "id": "text",
    "experiment_id": "text",
    "event_name": "text",
    "properties": {}
  }
]

Last updated