Datafiles API main flows - open-eid/SiGa GitHub Wiki
Introduction
Most of the datafiles API flows are analogous to hashcode API flows. This page currently describes datafiles-specific flows.
Add LTA timestamp to the signatures in the container
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