place.stream.live.getLiveUsers
Lexicon Version: 1
Definitions
Section titled “Definitions”Type: query
Get a list of livestream segments for a user
Parameters:
Name | Type | Req’d | Description | Constraints |
---|---|---|---|---|
limit | integer | ❌ | Min: 1 Max: 100 Default: 50 | |
before | string | ❌ | Format: datetime |
Output:
- Encoding:
application/json
- Schema:
Schema Type: object
Name | Type | Req’d | Description | Constraints |
---|---|---|---|---|
streams | Array of place.stream.livestream#livestreamView | ❌ |
Lexicon Source
Section titled “Lexicon Source”{ "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" } } } } } } }}