6. Search

Endpoint: /search/<search>
Method: GET
Request header: Authorization: Bearer <access_token>
Description: Search for notebooks, tags and notes that match a given text
Response data:
Field Type
message string
message_type string
result
object
- notebooks: list of objects
- id: string
- name: string
- notes: list of objects
- id: string
- notebook_id: string
- archived: boolean
- title: string (optional)
- tag_colors: object (optional)
- tag1: string
- ...
- tagN: string
- created: string
- last_modified: string
Request example:
curl -X 'GET' '{{ host_url }}search/<search>' \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <access_token>'