GET api/event/noteevent/noteeditionschain/{originalNoteId}
Get the chain of editions for a given original edited note.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| originalNoteId |
The id of the original edited note for which we need to get the chain of editions |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
The note edition chain for the given original edited note or null if that note does not exist
NoteEditionsChainDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| EditionHistory | Collection of NoteEditionDataContract |
None. |
Response Formats
application/json, text/json
Sample:
{
"EditionHistory": [
{
"Id": 1,
"CreatedBy": "sample string 2",
"Description": "sample string 3",
"CreatedDate": "2025-11-18T14:03:43.8438244Z",
"EditedVersionId": 5,
"Pinned": true
},
{
"Id": 1,
"CreatedBy": "sample string 2",
"Description": "sample string 3",
"CreatedDate": "2025-11-18T14:03:43.8438244Z",
"EditedVersionId": 5,
"Pinned": true
}
]
}