C# / .Net Core Class Library

Hi All,

I started a basic class library to gain access to our AutoPi data with the use of a .NET Core Class Library.

If anyone is interested, here you go:

Currently working is:

POST login/
GET dongle/devices
GET /logbook/trips/?device=
GET /logbook/storage/read/?device_id=
GET /logbook/storage/raw/?device_id=
GET /logbook/storage/fields/

4 Likes

A quick update on the project:

Currently working API calls include:

POST login/
GET dongle/devices
GET /logbook/trips/?device=
GET /logbook/storage/read/?device_id=
GET /logbook/storage/raw/?device_id=
GET /logbook/storage/data/?device_id=
GET /logbook/storage/fields/
GET /logbook/recent_stats/?device_id=
GET /logbook/events/?device_id=
GET /logbook/most_recent_position/?device_id=
GET /automation/fields/

I also implemented a local/disk based metadata/tag storage solution. Read and write tags per entity using JSON on the local disk.

1 Like