Vault Records and Aliases
Get record and its fields by ID
Get a record and all fields associated with the record by the given ID.
get/token/records/{recordId}
Path parameters
recordIdstring uuid required
Identifier of the resource in Payrails.
Query parameters
includeVolatileInfoboolean
Boolean indicating if additional information regarding volatile fields should be included in the response.
includeDetokenizationsboolean
Boolean indicating if additional information regarding performed detokenization attempts should be returned.
Response
Record and its fields.
Example response
{
"fields": [
{
"maximumExpirationDate": "2024-12-31T23:59:59Z",
"detokenizations": [
{
"lastAttemptedAt": "2024-01-01T12:00:00Z",
"count": 1,
"type": "detokenization"
}
]
}
]
}