Getting Template
- Using the API:
- In Python:
curl -X GET -H "x-javelin-apikey: $JAVELIN_API_KEY" "https://your-api-domain.com/v1/admin/processors/dp/templates/InspectPII"
Javelin Get Template Example
from javelin_sdk import (
JavelinClient,
JavelinConfig,
Template
)
import os
# Retrieve environment variables
javelin_api_key = os.getenv('JAVELIN_API_KEY')
# create javelin client
config = JavelinConfig(
base_url="https://your-api-domain.com",
javelin_api_key=javelin_api_key
)
client = JavelinClient(config)
# template name to get is "InspectPII"
template_name = "InspectPII"
# get the template, for async use `await client.aget_template(template_name)`
fetched_template = client.get_template(template_name)
print(fetched_template.model_dump_json(indent=2))