MujtabaNoori
New Contributor III

Hi @Sahil0007 ,

The [REDACTED] value you're seeing is being retrieved from Key Vault.

Here is the workaround, you can reverse the value twice to decode it and retrieve the original string. Alternatively, you can slice the string into two parts and concatenate them to reconstruct the actual value. Here's an example:

python:
_catalog = (key_vault_value[:-1] + key_vault_value[-1]).capitalize()
You can then use _catalog when querying the table, capitalize() helps to maintain the decoded string.