Documentation Index
Fetch the complete documentation index at: https://docs.encrata.com/llms.txt
Use this file to discover all available pages before exploring further.
Authentication
Requires an API key in the Authorization header.
Authorization: Bearer YOUR_API_KEY
Path parameters
The monitor’s unique identifier (UUID).
Request
All fields are optional — only include the fields you want to update.
Updated run frequency: monthly or quarterly.
Updated detection mode: diff_only or full_refresh.
Pause or resume: active or paused.
JSON-encoded array of field names to track. Empty array "[]" tracks all fields.Available fields: first_name, last_name, company, job_role, city, country, bio, industry, education, validity
Example request
curl -X PATCH https://encrata.com/api/monitors/a1b2c3d4-... \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"name": "Updated name",
"frequency": "quarterly",
"tracked_fields": "[\"company\",\"job_role\"]"
}'
Response
Returns the updated monitor object.