List transaction data
GET/v2/config/digital-wallet/openid/sdjwt/transaction-datas
This endpoint is used for listing transaction data.
Request
Query Parameters
Requested index for start of resources to be provided in response requested by client
Default value: 10
Number of items returned per page. Requested number of resources to be provided in response requested by client
Identifier for the issuance history.
Responses
- 200
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
transactionDataHistory object[]
Identifier for the transaction data
Identifier for the issuance history
the base64 encoded string values for the transaction data
the verifiable presentation token
Specifies the wallet unit attestation credential.
Specifies the wallet unit attestation pop credential.
transactionData objectrequired
Specifies whether wallet unit attesetation is verified or not
Specifies whether transaction data is verified or not
vpTokenDecoded object
The credential being presented to the verifier
The credential being presented to the verifier
Timestamp when the record was created.
Timestamp when the record was updated.
pagination object
Current page number
Total number of items available
Total number of pages based on limit
Number of items per page
Indicates if there's a previous page
Indicates if there's a next page
{
"transactionDataHistory": [
{
"transactionDataId": "string",
"credentialExchangeId": "string",
"transactionDataBase64s": [
"string"
],
"paymentWalletAttestation": "string",
"walletUnitAttestation": "string",
"walletUnitAttestationPoP": "string",
"transactionData": {},
"walletUnitAttestationVerified": true,
"transactionDataVerified": true,
"vpTokenDecoded": {},
"createdAt": 0,
"updatedAt": 0
}
],
"pagination": {
"currentPage": 0,
"totalItems": 0,
"totalPages": 0,
"limit": 0,
"hasPrevious": true,
"hasNext": true
}
}