Download Event Footage Post Version
Download the event footage post version by querying POST to
/gkevent/eventclipdownload with a Ventra API account using filename, username,
serialno and
ch. When querying the POST method to
/gkevent/eventclipdownload, the system will post
download event footage.
Parameters
| Name of Parameter | Type | Description |
|---|---|---|
| username | string | Required username |
| password | string | Required SHA-256 of your password
which is uppercase. |
| serialno | number | Required event serialno which you
want to download |
| ch | number | Required which channel you want to
download |
Example
Get device event footage by querying POST to URL /gkevent/eventclipdownload
with
username and password
URL https://www.ventracloud.com/gkevent/eventclipdownload
POST /gkevent/eventclipdownload
Content-Type: application/json; charset=utf-8
{
"username":"APIdemo",
"password":"58F0DB19BE70BFD8E53E1CAC8C32514853E97D0A44DA9B68A72046B7730BD5A6",
"serialno": 778625,
"ch": 1
}
Response
Will get a blob (Binary large object) stream from HTTP. You should handle blob save to file.
