The customer should provide an API endpoint that returns all data associated with the specified custom PII tag.
Request Type: GET
Query Param:
tag_type: The type of the custom PII tag for which data needs to be retrieved.
tag_type: Custom_tag_type
Eg
tag_type: CUSTOMER_ID
Response:
The output contains a list of data associated with the specified custom tag type.
{"data": {
"tag_type": "CUSTOMER_ID",
"data_list":["98765","78901","65432","56789"]
},
"success":true,
"error": ""
}