Created using Phalcon PHP Framework
Semua endpoint diawali dengan prefix /indoor-positioning
-
GET
/visualization
Untuk menampilkan halaman mapping, bisa langsung dibuka via browser -
GET
/coordinates
Untuk mendapatkan koordinat Access Point dan semua devicesResponse: 200 OK
{ "devices_coords": [ { "id": int: id, "x": int: x, "y": int: y, "name": string: name }, . . . . ] }
-
POST
/devices-coordinates
Untuk menyimpan koordinat device saat iniRequest:
{ "x" : int: x, "y" : int: y, "name" : string: name }
Response 201 CREATED
-
POST
/delete/coordinates
Untuk menghapus data koordinat device di databaseResponse 204 NO CONTENT