curl --request POST \
--url https://dovetail.com/api/v1/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"offset": 0,
"limit": 50,
"filter": {
"notes": [
{
"title": {
"contains": "<string>",
"equal_to": "<string>"
},
"authors": {
"overlaps": [
"<string>"
]
},
"content": {
"contains": "<string>",
"empty": true,
"equal_to": "<string>"
},
"created_at": {
"equal_to": "2023-11-07T05:31:56Z",
"greater_than": "2023-11-07T05:31:56Z",
"less_than": "2023-11-07T05:31:56Z"
}
}
],
"tags": [
{
"title": {
"contains": "<string>",
"equal_to": "<string>"
},
"description": {
"contains": "<string>",
"empty": true,
"equal_to": "<string>"
},
"highlight_count": {
"equal_to": 123,
"greater_than": 123,
"less_than": 123
},
"created_at": {
"equal_to": "2023-11-07T05:31:56Z",
"greater_than": "2023-11-07T05:31:56Z",
"less_than": "2023-11-07T05:31:56Z"
}
}
],
"highlights": [
{
"authors": {
"overlaps": [
"<string>"
]
},
"created_at": {
"equal_to": "2023-11-07T05:31:56Z",
"greater_than": "2023-11-07T05:31:56Z",
"less_than": "2023-11-07T05:31:56Z"
},
"id": {
"empty": true,
"equal_to": "<string>",
"in": [
"<string>"
]
},
"text": {
"contains": "<string>",
"empty": true,
"equal_to": "<string>"
},
"note": {
"empty": true,
"equal_to": "<string>",
"in": [
"<string>"
]
},
"tags": {
"contains": [
"<string>"
],
"empty": true,
"overlaps": [
"<string>"
]
}
}
],
"insights": [
{
"authors": {
"overlaps": [
"<string>"
]
},
"created_at": {
"equal_to": "2023-11-07T05:31:56Z",
"greater_than": "2023-11-07T05:31:56Z",
"less_than": "2023-11-07T05:31:56Z"
},
"id": {
"empty": true,
"equal_to": "<string>",
"in": [
"<string>"
]
},
"published": {
"equal_to": true
},
"published_at": {
"equal_to": "2023-11-07T05:31:56Z",
"greater_than": "2023-11-07T05:31:56Z",
"less_than": "2023-11-07T05:31:56Z"
},
"title": {
"contains": "<string>",
"equal_to": "<string>"
},
"contributors": {
"overlaps": [
"<string>"
]
}
}
],
"channels": [
{
"title": {
"contains": "<string>",
"equal_to": "<string>"
},
"authors": {
"overlaps": [
"<string>"
]
},
"created_at": {
"equal_to": "2023-11-07T05:31:56Z",
"greater_than": "2023-11-07T05:31:56Z",
"less_than": "2023-11-07T05:31:56Z"
}
}
],
"themes": [
{
"title": {
"contains": "<string>",
"equal_to": "<string>"
},
"created_at": {
"equal_to": "2023-11-07T05:31:56Z",
"greater_than": "2023-11-07T05:31:56Z",
"less_than": "2023-11-07T05:31:56Z"
}
}
]
},
"query": ""
}'