diff --git a/postman/eventhub-esper-poc.postman_collection.json b/postman/eventhub-esper-poc.postman_collection.json index 7c92bf6..45f7c2d 100644 --- a/postman/eventhub-esper-poc.postman_collection.json +++ b/postman/eventhub-esper-poc.postman_collection.json @@ -201,6 +201,133 @@ ] } } + }, + { + "name": "Tachograph file sessions", + "item": [ + { + "name": "Create tachograph file session", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "formdata", + "formdata": [ + { + "key": "file", + "type": "file", + "src": "{{tachographDddFile}}" + }, + { + "key": "tenantKey", + "type": "text", + "value": "{{tenantKey}}" + }, + { + "key": "sourceInstanceKey", + "type": "text", + "value": "{{sourceInstanceKey}}" + }, + { + "key": "sessionLabel", + "type": "text", + "value": "{{sessionLabel}}" + } + ] + }, + "url": { + "raw": "{{baseUrl}}/api/eventhub/tachograph-file-sessions", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "api", + "eventhub", + "tachograph-file-sessions" + ] + } + } + }, + { + "name": "Get tachograph file session", + "request": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/api/eventhub/tachograph-file-sessions/{{sessionId}}", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "api", + "eventhub", + "tachograph-file-sessions", + "{{sessionId}}" + ] + } + } + }, + { + "name": "List tachograph file session drivers", + "request": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/api/eventhub/tachograph-file-sessions/{{sessionId}}/drivers", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "api", + "eventhub", + "tachograph-file-sessions", + "{{sessionId}}", + "drivers" + ] + } + } + }, + { + "name": "Get tachograph file session driver detail", + "request": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/api/eventhub/tachograph-file-sessions/{{sessionId}}/drivers/{{driverKey}}", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "api", + "eventhub", + "tachograph-file-sessions", + "{{sessionId}}", + "drivers", + "{{driverKey}}" + ] + } + } + }, + { + "name": "Delete tachograph file session", + "request": { + "method": "DELETE", + "header": [], + "url": { + "raw": "{{baseUrl}}/api/eventhub/tachograph-file-sessions/{{sessionId}}", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "api", + "eventhub", + "tachograph-file-sessions", + "{{sessionId}}" + ] + } + } + } + ] } ], "variable": [ @@ -227,6 +354,26 @@ { "key": "occurredTo", "value": "2026-05-01T00:00:00Z" + }, + { + "key": "sourceInstanceKey", + "value": "legalrequirements-drivercard" + }, + { + "key": "sessionLabel", + "value": "driver-card upload sample" + }, + { + "key": "sessionId", + "value": "00000000-0000-0000-0000-000000000000" + }, + { + "key": "driverKey", + "value": "12:12345678901200" + }, + { + "key": "tachographDddFile", + "value": "C:\\\\temp\\\\driver-card.ddd" } ] }