Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
out-of-band-sequence.md 995 B
sequenceDiagram
participant PCM User
participant PCM App
participant OCM Admin
participant OCM Proof Manager
 par
 OCM Admin ->> OCM Proof Manager: Calls the POST method send-out-of-band-presentation-request, with either schemaId or credentialDefinitionId and required attributes.
 OCM Proof Manager ->> OCM Admin: Sends the URL generated of proof presentation request
 OCM Admin->> OCM Admin: Receives the URL and converts it to QR code and displays the same.
 PCM App ->> OCM Admin: Scans the QR code for Out of Band Proof Presentation.
 PCM User ->> PCM App: The User accepts to share the requested attributes of specified credential.
 PCM App ->> OCM Proof Manager: Sends the requested attributes, if proof verification is successful it sets isVerified as true and state as done in the database.
 OCM Admin ->> OCM Proof Manager: Calls Get method find-by-presentation-id API, against the presentation-id of proof request, and confirms the status of isVerified and state.
 end