2026 February Week 2 release: Updates to existing APIs
Summary: Updated APIs for Search.
Search
Search (v v1)
What's Changed
POST /v1/generative/source
POST /v1/generative/sourceRequest:
Changed content type : application/json
- Changed property
filter(object)Use to filter the content. It uses the json format, like {"operator":"and", "conditions":[{"attribute":"custom.propert_a", "operator":"in", "value":["test"]}]}
- Changed property
operator(string)Value should be 'and' or 'or'
- Changed property
filters(array)One array contains multi filters
- Changed property
conditions(array)One array contain multi conditions
Changed items (object):- Changed property
attribute(string)Property name of content to be used in filter, for custom property, the value should be 'custom.{propertyName}'
- Changed property
operator(string)The value should be 'in', for date type property, its value should be 'greaterthan' 'greaterthanorequalto' 'lessthan' 'lessthanorequalto'
- Changed property
value(array)The values of the property
- Changed property
- Changed property
POST /v1/generative/query
POST /v1/generative/queryRequest:
Changed content type : application/json
- Changed property
filter(object)Use to filter the content. It uses the json format, like {"operator":"and", "conditions":[{"attribute":"custom.propert_a", "operator":"in", "value":["test"]}]}
- Changed property
operator(string)Value should be 'and' or 'or'
- Changed property
filters(array)One array contains multi filters
- Changed property
conditions(array)One array contain multi conditions
Changed items (object):- Changed property
attribute(string)Property name of content to be used in filter, for custom property, the value should be 'custom.{propertyName}'
- Changed property
operator(string)The value should be 'in', for date type property, its value should be 'greaterthan' 'greaterthanorequalto' 'lessthan' 'lessthanorequalto'
- Changed property
value(array)The values of the property
- Changed property
- Changed property