-
Notifications
You must be signed in to change notification settings - Fork 12
Datafiles API main flows
Juku Trump edited this page Mar 4, 2024
·
1 revision
Most of the datafiles API flows are analogous to hashcode API flows. This page currently describes datafiles-specific flows.
sequenceDiagram
participant C as Client E-service
participant S as SiGa
activate C
C ->>+ S: POST /upload/containers
S -->>- C: status(containerId)
C ->>+ S: POST /containers/{containerId}/augmentation
S -->>- C: status(OK)
C ->>+ S: GET /containers/{containerId}
S -->>- C: status(container)
C ->>+ S: DELETE /containers/{containerId}
S -->>- C: status(OK)
deactivate C