-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Credential Download by Holder #24
Labels
Sub-task
A small piece of work that's part of a larger task.
Milestone
Comments
Phil91
added a commit
that referenced
this issue
Apr 2, 2024
9 tasks
Phil91
added a commit
that referenced
this issue
Apr 2, 2024
Phil91
added a commit
that referenced
this issue
Apr 8, 2024
Phil91
added a commit
that referenced
this issue
Apr 8, 2024
Phil91
added a commit
that referenced
this issue
Apr 10, 2024
Phil91
added a commit
that referenced
this issue
Apr 24, 2024
Phil91
added a commit
that referenced
this issue
Apr 26, 2024
* feat(revocation): add endpoints to revoke credentials * add endpoint for issuer to revoke a credential * add endpoint for holder to revoke a credential * add logic to revoke credentials when they are expired * feat(download): add credential download endpoint * chore: adjust statusList Url Refs: #14 #15 #16 #24 --------- Co-authored-by: Norbert Truchsess <[email protected]> Reviewed-by: Norbert Truchsess <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description:
We need to provide the ability for the issuer component to allow users to download credentials via a new API endpoint. The endpoint will be a GET request to
/credential
. This ticket involves creating the necessary backend functionality to handle the request, authenticate the user, retrieve the credential from the storage, and return it to the user in a secure manner.Endpoint (new):
/api/verifiedCredential/{credentialID}
Description:
The endpoint enables users to download the credential (full json) of their own company.
It is not allowed to fetch unsigned credentials or credentials of any other company.
The credential type inside table documents must be defined (per config) and the status of the credential MUST be ACTIVE or INACTIVE
Acceptance Criteria:
GET /credential
must be created.Tasks:
The text was updated successfully, but these errors were encountered: