Documentation Index
Fetch the complete documentation index at: https://developers.vendaze.com/llms.txt
Use this file to discover all available pages before exploring further.
v1.2.0
Custom fields returned in ID lookups
When fetching any record by ID (GET /v1/people/:id, GET /v1/companies/:id, GET /v1/deals/:id), the custom_fields object is now returned automatically with the values filled in for that record.value: null.New webhook events: products
Two new events were added for products:product.created: fired when a new product is created in the workspaceproduct.updated: fired when a product is updated
Idempotency-Key header now accepted on all POST endpoints
TheIdempotency-Key header is now supported on all creation endpoints (POST /v1/*). Previously it was available only on /v1/deals and /v1/people.v1.1.1
Fix: tag filter with special characters
Fixed a bug where tags containing special characters (such as & and +) were not filtered correctly when passed via tag=value. Encoding is now handled correctly before comparison.Fix: order_by=full_name on companies
Theorder_by=full_name parameter on GET /v1/companies was incorrectly returning a 422 error. Fixed: sorting by full_name now works for both people and companies.v1.1.0
Price filters on deals
Theprice_min_cts, price_max_cts, and currency parameters were added to GET /v1/deals:currency uses exact matching with the ISO currency code.Date range filters for deals: forecast_after and forecast_before
Deals can now be filtered by expected closing date:Performance improvement on listings with custom_field[]
Queries usingcustom_field[UUID]=value now use a composite index on custom_fields_associate, reducing response time by up to 60% for workspaces with a high volume of custom fields.