Verifiable Presentation

OpenAPI documentation for the "Verifiable Presentation" module

Get verifiable presentations

Retrieve a paginated response of verifiable presentationsClaim-based access control: Verifier_Admin, Verifier_Auditor, Verifier_User

GET../private/verifiable-presentations
Authorization
Query parameters
Response
Body
data*Array of entities
meta*Pagination Metadata
links*Links to pages
dataarray of DetailVerifiablePresentationDto (object)
metaobject
Request
const response = await fetch('../private/verifiable-presentations', {
    method: 'GET',
    headers: {
      "Authorization": "Bearer JWT"
    },
});
const data = await response.json();
Response
{
  "data": [
    {
      "correlationId": "f9dbff8e-6dba-4955-bd7f-61c083db290d",
      "definitionId": "emailCredential",
      "organisationDID": "text",
      "status": "created",
      "content": [
        {
          "id": "text",
          "createdAt": "2024-12-04T08:10:06.777Z",
          "types": [
            "text"
          ],
          "expirationDate": "2024-12-04T08:10:06.777Z",
          "issuanceDate": "2024-12-04T08:10:06.777Z",
          "issuer": "text",
          "subject": "text"
        }
      ],
      "modifiedBy": "text",
      "createdBy": "text",
      "createdAt": "2024-12-04T08:10:06.777Z",
      "updatedAt": "2024-12-04T08:10:06.777Z",
      "verifiedAt": "2024-12-04T08:10:06.777Z"
    }
  ],
  "meta": {
    "select": [
      "text"
    ],
    "filter": {
      "correlationId": "text",
      "definitionId": "text",
      "createdBy": "text",
      "modifiedBy": "text",
      "createdAt": "text",
      "updatedAt": "text",
      "deletedAt": "text",
      "verifiedAt": "text",
      "status": "text",
      "search": "text"
    }
  },
  "links": {
    "first": "text",
    "previous": "text",
    "current": "text",
    "next": "text",
    "last": "text"
  }
}

Last updated