User Defined Templates (UDF/UDT)
User-Defined Templates (UDTs) and UDF Templates allow users to create reusable logic: custom expressions, validation logic, or transformation blocks used in Data Quality rules.
These APIs handle:
Creating & managing templates
Validating templates
Retrieving validation results
Available Endpoints
Action | Endpoint |
|---|---|
Create Template |
|
Insert Template |
|
Get Template |
|
Update Template |
|
Validate Template |
|
Get Validation Result |
|
Sample Request (Create UDF Template)
curl -X POST "https://{{HOST}}/catalog-server/api/udf-templates" \
-H "Content-Type: application/json" \
-d '{ "name": "is_valid_email", "code": "REGEX_MATCH(email, ...)" }'

Send a comment