diff options
Diffstat (limited to 'sdnr/wt/odlux/apps/inventoryApp/src')
-rw-r--r-- | sdnr/wt/odlux/apps/inventoryApp/src/services/inventoryService.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sdnr/wt/odlux/apps/inventoryApp/src/services/inventoryService.ts b/sdnr/wt/odlux/apps/inventoryApp/src/services/inventoryService.ts index b6025d4da..d43d2988d 100644 --- a/sdnr/wt/odlux/apps/inventoryApp/src/services/inventoryService.ts +++ b/sdnr/wt/odlux/apps/inventoryApp/src/services/inventoryService.ts @@ -36,9 +36,9 @@ class InventoryService { } public async getInventoryEntry(id: string): Promise<InventoryType | undefined> { - const path = `/restconf/operations/data-provider:read-inventory-list`; + const path = `/rests/operations/data-provider:read-inventory-list`; const body = { - "input": { + "data-provider:input": { "filter": [ { property: "id", filtervalue: id }, ], |