# Meeting Notes

Operations related to meeting notes

## Get all meeting notes

> Returns a list of meeting notes with pagination support.

```json
{"openapi":"3.0.0","info":{"title":"Salescaling API","version":"1.0"},"tags":[{"name":"Meeting Notes","description":"Operations related to meeting notes"}],"servers":[{"url":"https://api.salescaling.com","description":"Base API URL"}],"security":[{},{"bearer":[]}],"paths":{"/api/v1/meeting-notes":{"get":{"operationId":"PublicApiMeetingNoteController_getMeetingNotes","summary":"Get all meeting notes","description":"Returns a list of meeting notes with pagination support.","parameters":[{"name":"page","required":false,"in":"query","description":"Page number for pagination (default: 1)","schema":{"type":"number"}},{"name":"limit","required":false,"in":"query","description":"Number of items per page (default: 10)","schema":{"type":"number"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PublicApiGetMeetingNotesListResponseDto"}}}},"401":{"description":"Unauthorized - missing or invalid API key or Bearer token"}},"tags":["Meeting Notes"]}}},"components":{"schemas":{"PublicApiGetMeetingNotesListResponseDto":{"type":"object","properties":{"statusCode":{"type":"number","default":200},"count":{"type":"number"},"error":{"type":"string","nullable":true},"data":{"type":"array","items":{"$ref":"#/components/schemas/PublicApiMeetingNoteDto"}}},"required":["statusCode","count","error","data"]},"PublicApiMeetingNoteDto":{"type":"object","properties":{"id":{"type":"string","description":"ID of the meeting note"},"tag":{"type":"string","description":"Tag associated with the note"},"content":{"type":"string","description":"Content of the note"},"priority":{"type":"string","description":"Priority level of the note","enum":["low","medium","high"]},"meetingId":{"type":"string","description":"ID of the associated meeting"},"smartCategoryId":{"type":"string","description":"ID of the associated smart category"},"isManual":{"type":"boolean","description":"Whether the note was manually created"},"startTimestamp":{"type":"number","description":"Start timestamp of the note"},"endTimestamp":{"type":"number","description":"End timestamp of the note"}},"required":["id","content","meetingId","smartCategoryId","isManual"]}}}}
```

## Get meeting note by ID

> Returns a meeting note by ID.

```json
{"openapi":"3.0.0","info":{"title":"Salescaling API","version":"1.0"},"tags":[{"name":"Meeting Notes","description":"Operations related to meeting notes"}],"servers":[{"url":"https://api.salescaling.com","description":"Base API URL"}],"security":[{},{"bearer":[]}],"paths":{"/api/v1/meeting-notes/{id}":{"get":{"operationId":"PublicApiMeetingNoteController_getMeetingNoteById","summary":"Get meeting note by ID","description":"Returns a meeting note by ID.","parameters":[{"name":"id","required":true,"in":"path","description":"Meeting ID to delete.","schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PublicApiGetMeetingNoteByIdResponseDto"}}}},"401":{"description":"Unauthorized - missing or invalid API key or Bearer token"}},"tags":["Meeting Notes"]}}},"components":{"schemas":{"PublicApiGetMeetingNoteByIdResponseDto":{"type":"object","properties":{"statusCode":{"type":"number","default":200},"count":{"type":"number"},"error":{"type":"string","nullable":true},"data":{"$ref":"#/components/schemas/PublicApiMeetingNoteDto"}},"required":["statusCode","count","error","data"]},"PublicApiMeetingNoteDto":{"type":"object","properties":{"id":{"type":"string","description":"ID of the meeting note"},"tag":{"type":"string","description":"Tag associated with the note"},"content":{"type":"string","description":"Content of the note"},"priority":{"type":"string","description":"Priority level of the note","enum":["low","medium","high"]},"meetingId":{"type":"string","description":"ID of the associated meeting"},"smartCategoryId":{"type":"string","description":"ID of the associated smart category"},"isManual":{"type":"boolean","description":"Whether the note was manually created"},"startTimestamp":{"type":"number","description":"Start timestamp of the note"},"endTimestamp":{"type":"number","description":"End timestamp of the note"}},"required":["id","content","meetingId","smartCategoryId","isManual"]}}}}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.salescaling.com/api/meeting-notes.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
