Create credential report
Roles
/v1/events/credential-reportsCreates a report of credential lifecycle operations (issuance and status changes).
Only CWT and mDoc credentials are included in the report.
Authorization
bearerAuth In: header
Request Body
application/json
The credential report parameters
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
text/plain
curl -X POST "https://example.com/v1/events/credential-reports" \ -H "Content-Type: application/json" \ -d '{ "timezoneOffset": "string", "startDate": "2019-08-24", "endDate": "2019-08-24", "profiles": [ "cwt" ] }'{ "data": [ { "date": "2019-08-24", "operation": "issued", "profile": "cwt", "credentialType": "string", "count": 0 } ], "nextCursor": "string"}How would you rate this page?
Retrieve events GET
Returns a list of matching events from the tenant's event database. The `categories` and `types` parameters filter based on an **OR** logic, whilst all other parameters use an "AND" logic. For example `(categories OR types) AND requestIds AND dateFrom`. Refer to the [Events registry](https://api-reference-sdk.mattr.global/event-registry/latest/index.html) for an inclusive list of events categories and types.
Sign a message POST
Accepts a message payload and signs it with a JWS (JSON Web Signature) using the a specific key from the DID (Decentralized Identifier) provided in the request. ### **Analytic events** * MESSAGING_SIGN_START * MESSAGING_SIGN_SUCCESS * MESSAGING_SIGN_FAIL