Files
WyvernInventory/WyvernInventory.API/WyvernInventory.API.http
T
rickcowan 0b357e1e13 Created API Controllers (#1)
Removed strongly typed inventory objects

Added EAV inventory types

Added EAV object handling philosophy

Added controllers

Added EF Core migration integration

Reviewed-on: #1
2026-05-02 19:24:06 -05:00

46 lines
683 B
HTTP

@WyvernInventory.API_HostAddress = http://localhost:5244
POST http://localhost:5244/inventory
Content-Type: application/json
[
{
"name": "RTX 4070 Ti Super"
}
]
###
POST http://localhost:5244/api/v1/InventoryType
Content-Type: application/json
[
]
###
POST http://localhost:5244/api/v1/inventorytype/upsert
Content-Type: application/json
[
{
"name": "GPU",
"attributedefinitions": [
{
"name": "Brand",
"dataType": 0
},
{
"name": "VRAM_GB",
"dataType": 1
},
{
"name": "Chipset",
"dataType": 0
}
]
}
]
###
DELETE http://localhost:5244/api/v1/InventoryType/6
###