Vault Records and Aliases
Get field details by alias list
Get field details for multiple provided aliases. The order in which aliases returned may not match the order in which you passed the aliases in request. Not found fields will be ignored: if you request fields by aliases a, b, c and there is no field with alias b, then only fields a and c are returned.
get/token/records/fields
Query parameters
aliasesstring required
Comma-separated aliases of fields in Payrails Vault. There should be at least one alias provided and in one call you can provide up to 10 aliases.
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
Array of Field objects.
Example response
[
{
"maximumExpirationDate": "2024-12-31T23:59:59Z",
"detokenizations": [
{
"lastAttemptedAt": "2024-01-01T12:00:00Z",
"count": 1,
"type": "detokenization"
}
]
}
]