How to detokenize a single field in Identities.
curl --request GET \
--url http://localhost:5001/identities/{identity_id}/detokenize/{field} \
--header 'X-blnk-key: <api-key>'{
"field": "EmailAddress",
"value": "alice.smith@example.com"
}
X-blnk-key: <api-key>.
Replace <api-key> with your secret API key. Ensure the key is kept secure and not exposed in public repositories or client-side code.
See also: Secure your Blnk server
{
"field": "EmailAddress",
"value": "alice.smith@example.com"
}
Was this page helpful?
curl --request GET \
--url http://localhost:5001/identities/{identity_id}/detokenize/{field} \
--header 'X-blnk-key: <api-key>'{
"field": "EmailAddress",
"value": "alice.smith@example.com"
}