Read transaction data
GET/v2/config/digital-wallet/openid/sdjwt/transaction-data/:transactionDataId
This endpoint is used for reading transaction data.
Request
Path Parameters
transactionDataId stringrequired
Identifier for the transaction data.
Responses
- 200
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
transactionDataHistory object
transactionDataId string
Identifier for the transaction data
credentialExchangeId string
Identifier for the issuance history
transactionDataBase64s string[]
the base64 encoded string values for the transaction data
paymentWalletAttestation stringrequired
the verifiable presentation token
walletUnitAttestation stringrequired
Specifies the wallet unit attestation credential.
walletUnitAttestationPoP stringrequired
Specifies the wallet unit attestation pop credential.
transactionData objectrequired
property name* any
walletUnitAttestationVerified boolean
Specifies whether wallet unit attesetation is verified or not
transactionDataVerified boolean
Specifies whether transaction data is verified or not
vpTokenDecoded object
The credential being presented to the verifier
property name* any
The credential being presented to the verifier
createdAt number
Timestamp when the record was created.
updatedAt number
Timestamp when the record was updated.
{
"transactionDataHistory": {
"transactionDataId": "string",
"credentialExchangeId": "string",
"transactionDataBase64s": [
"string"
],
"paymentWalletAttestation": "string",
"walletUnitAttestation": "string",
"walletUnitAttestationPoP": "string",
"transactionData": {},
"walletUnitAttestationVerified": true,
"transactionDataVerified": true,
"vpTokenDecoded": {},
"createdAt": 0,
"updatedAt": 0
}
}
Loading...