Skip to content

place.stream.live.getLiveUsers

Lexicon Version: 1

Type: query

Get a list of livestream segments for a user

Parameters:

NameTypeReq’dDescriptionConstraints
limitintegerMin: 1
Max: 100
Default: 50
beforestringFormat: datetime

Output:

  • Encoding: application/json
  • Schema:

Schema Type: object

NameTypeReq’dDescriptionConstraints
streamsArray of place.stream.livestream#livestreamView

{
"lexicon": 1,
"id": "place.stream.live.getLiveUsers",
"defs": {
"main": {
"type": "query",
"description": "Get a list of livestream segments for a user",
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 100,
"default": 50
},
"before": {
"type": "string",
"format": "datetime"
}
}
},
"output": {
"encoding": "application/json",
"schema": {
"type": "object",
"properties": {
"streams": {
"type": "array",
"items": {
"type": "ref",
"ref": "place.stream.livestream#livestreamView"
}
}
}
}
}
}
}
}