Custom PIIRetrieve Tag Details

Retrieve Tag Details

Fetch the full configuration of a custom PII tag including masking behavior and endpoint settings.

{
  "data": {
    "tag_type": "CUSTOMER_ID"
  }
}
{
  "data": {
    "tag_type": "CUSTOMER_ID",
    "token_name": "Default Token",
    "format_name": null,
    "prefix": "<CUSTOMER_ID>",
    "suffix": "</CUSTOMER_ID>",
    "identification_endpoint_details": {
      "url": "https://example.com/custom-pii/identify",
      "method": "PUT"
    },
    "pi_elements_list_endpoint_details": {
      "url": "https://example.com/custom-pii/list",
      "method": "GET"
    }
  },
  "success": true,
  "error": { "message": "" }
}

Fetches the full configuration of a custom PII tag.

Endpoint

MethodEndpoint
PUThttps://<domain>/api/vault/metadata/custom-tag/details

Response fields

tag_typestring
Required

Custom tag name.

token_namestring
Required

Token type used for masking.

format_namestring

Format applied during masking, if any.

prefixstring
Required

Prefix used to wrap masked values in output.

suffixstring
Required

Suffix used to wrap masked values in output.

identification_endpoint_detailsobject
Required

Configuration of the identification endpoint.

pi_elements_list_endpoint_detailsobject

Configuration of the whitelist endpoint, if configured.