Files
lootakalenteri-backend/Docs.md
2025-05-14 18:23:23 +03:00

804 B

Admin tool

GET /lootaherra/

Löytyykö? 200 OK / 404 Not Found

Lisää uusi loota_admin taulu. Sama kuin loota_customer.

GET /lootaherra/orders

Lista loota_order rivejä, joissa mukana asiakas tieto

[
    {
        id: uuid
        location: string
        create_time: timestamp
        {
            id: uuid
            identifier: string
            created_time: timestamp
        }
    }
]

GET /lootaherra/box-list/

Lista loota_box rivejä, joissa mukana loota_orferin tiedot.

[
    {
        id: uuid
        delivery_date: timestamp //debuggausta varten
        pickup_date: timestamp
        {
            id: uuid
            customer_id: uuid
            location: string
            create_time: timestamp
        }
    }
]