Submit a batch of analytics events from the mobile app.
Input
Encoding
application/jsonevents
array
Required
No description available.
maxLength: 20 itemsOutput
Encoding
application/jsoninserted
integer
Required
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"events"
],
"properties": {
"events": {
"type": "array",
"items": {
"type": "object",
"required": [
"event"
],
"properties": {
"ts": {
"type": "string",
"format": "datetime"
},
"did": {
"type": "string",
"format": "did"
},
"event": {
"type": "string"
},
"props": {
"type": "unknown"
},
"platform": {
"type": "string"
},
"appVersion": {
"type": "string"
}
}
},
"maxLength": 20
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"inserted"
],
"properties": {
"inserted": {
"type": "integer"
}
}
},
"encoding": "application/json"
},
"description": "Submit a batch of analytics events from the mobile app."
}