Event-level feed
Event-level feed
GET
https://example-extension.mic.io/lvis/:lvis_instance_id/projects/:project_id/events/:event_id/feeds/:feed_id
Path Parameters
Name
Type
Description
lvis_instance_id
string
Unique identifier across all M/IC instances, in UUID format.
project_id
string
Project UUID.
event_id
string
Event UUID.
feed_id
string
String that uniquely identifies event tab.
// Any valid JSON response expected
Example
curl --request PUT \
--url https://example-extension.mic.io/lvis/c068dd33-46c3-4789-a619-b14e4bcbe990/projects/da34516f-00af-435e-bd03-ab1720755dda/events/a8552581-a10f-4fa7-85e9-7c9c82766be7/feeds/results \
--header 'Content-Type: application/vnd.api+json'
"rounds": [
{
"round": "Round #1",
"segments": [
{
"name": "gender",
"values": [
{
"value": "female",
"data": {
"count": "26",
"sum": "2371"
}
},
{
"value": "male",
"data": {
"count": "17",
"sum": "1426"
}
}
]
},
{
"name": "age",
"values": [
{
"value": "25-34",
"data": {
"count": "21",
"sum": "1898"
}
},
{
"value": "35-44",
"data": {
"count": "10",
"sum": "871"
}
},
{
"value": "45-54",
"data": {
"count": "9",
"sum": "803"
}
},
{
"value": "55+",
"data": {
"count": "3",
"sum": "225"
}
}
]
}
]
},
{
"round": "Round #2",
"segments": [
{
"name": "gender",
"values": [
{
"value": "female",
"data": {
"count": "34",
"sum": "3246"
}
},
{
"value": "male",
"data": {
"count": "37",
"sum": "3562"
}
}
]
},
{
"name": "age",
"values": [
{
"value": "25-34",
"data": {
"count": "14",
"sum": "1082"
}
},
{
"value": "35-44",
"data": {
"count": "21",
"sum": "1371"
}
},
{
"value": "45-54",
"data": {
"count": "27",
"sum": "2498"
}
},
{
"value": "55+",
"data": {
"count": "23",
"sum": "1857"
}
}
]
}
]
}
]
Was this helpful?