| GET | /video | Returns the specified video based on the Id. | |
|---|---|---|---|
| GET | /video/{id} | Returns the specified video based on the Id. |
import datetime
import decimal
from marshmallow.fields import *
from servicestack import *
from typing import *
from dataclasses import dataclass, field
from dataclasses_json import dataclass_json, LetterCase, Undefined, config
from enum import Enum, IntEnum
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class GetVideo:
# @ApiMember(DataType="int", IsRequired=true)
id: int = 0
# @ApiMember(Description="Enable this to provide chunking of video data.")
stream: bool = False
"""
Enable this to provide chunking of video data.
"""
# @ApiMember(Description="Request a video by it's filename.")
file_name: Optional[str] = None
"""
Request a video by it's filename.
"""
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /video HTTP/1.1 Host: galaxymobile.api.client.prod.86degrees.com Accept: text/csv