Retrieve tokenized data for reveal
GET/v1/vault/show
Retrieves stored document or card details.
Request
Query Parameters
Possible values: [document, card]
The type of data to retrieve
Possible values: [ssn, id_card, license, passport]
The type of document to retrieve (required when type=document)
The card ID to retrieve details for (required when type=card)
Possible values: [pan, cvv, expiry]
Card fields to retrieve. Defaults to all fields when not specified.
The type of data to retrieve
The type of document to retrieve (required when type=document)
The card ID to retrieve details for (required when type=card)
Card fields to retrieve. Defaults to all fields when not specified.
Responses
- 200
- 400
- 403
- 404
Token data retrieved successfully.
- application/json
- Schema
- Example (from schema)
Schema
data
object
Tokenized SSN value
Tokenized ID card value
Tokenized driver license value
Tokenized passport value
card
object
Card details retrieved from the card provider
Card number (PAN) - tokenized
Card security code (CVV) - tokenized
Card expiration date in MMYY format - tokenized
{
"traceId": "string",
"message": "string",
"data": {
"documentSsn": "string",
"documentIdCard": "string",
"documentLicense": "string",
"documentPassport": "string",
"card": {
"pan": "tok_xxxxx",
"cvv": "tok_xxxxx",
"expiryDate": "tok_xxxxx"
}
}
}
Invalid request payload. This can happen if required fields are missing or have invalid formats.
- application/json
- Schema
- Example (from schema)
Schema
{
"traceId": "string",
"message": "string"
}
The API key is invalid or the client does not have sufficient permissions.
- application/json
- Schema
- Example (from schema)
Schema
{
"traceId": "string",
"message": "string"
}
One of the specified resources was not found. Does not apply for empty result set.
- application/json
- Schema
- Example (from schema)
Schema
{
"traceId": "string",
"message": "string"
}