Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

...

...

...

...

...

...

Viewing event records

  • Download the corresponding python sample

View file
namestorage_api_get_events.py

  • Call storage_api_get_events.py to view recorded events within a specified time interval.

    Code Block
    python3 ./storage_api_get_events.py -access_token sdafasdfasdfasdfasdfasrwecsdcsdf= -start 2022-12-01T08:30:00 -end 2022-12-02T08:30:00 -limit 10

    Where access_token is the camera’s access token, start is the beginning of the time interval, end is the end of the time interval, and limit is the maximum number of events to include in response.
    Event data is of shape:

    Code Block
    {
      'camid': int,
      'id': int, 
      'name': str, 
      'thumb': {
        'height': int, 
        'id': int, 
        'size': int, 
        'time': 'str', 
        'url': str, 
        'width': int
      }, 
      'time': str
    }