Get replies for a Note
Notes
Get replies for a Note
This endpoint returns reply notes for a given note id.
You can filter replies using the filter query parameter. The filter parameter is a string that you can specify conditions based on the following properties.
| Property Name | Type | Allowed Operators | Examples |
|---|---|---|---|
creator.id | int32 | = | creator.id=1 |
createdAt | datetime | >, <, >=, <= | createdAt<2025-02-04T10:48:24Z |
updatedAt | datetime | >, <, >=, <= | updatedAt>=2025-02-03T10:48:24Z |
GET
Get replies for a Note
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Note ID
Required range:
1 <= x <= 2147483647Query Parameters
Filter options
Cursor for the next or previous page
Number of items to include in the page
Required range:
0 <= x <= 100Include total count of the collection in the pagination response
Response
OK
Replies for a Note
A page of Note Replies
Maximum array length:
100A reply to a note created by a user
- notes.UserReplyNote
- notes.AiNotetakerReplyNote
Example:
{
"id": 2,
"type": "user-reply",
"content": {
"html": "<p>This is a user reply note!</p>"
},
"creator": {
"id": 1,
"firstName": "Jane",
"lastName": "Smith",
"primaryEmailAddress": "jane.smith@northpointvc.com",
"type": "internal"
},
"mentions": [],
"parent": { "id": 1 },
"createdAt": "2023-01-01T00:00:00Z",
"updatedAt": "2023-01-21T00:00:00Z"
}