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
Dezrez.Core.DataContracts.External.Api.Lists.Events.NoteEditionsChainDataContractName | Description | Type | Additional information |
---|---|---|---|
EditionHistory | Collection of Dezrez.Core.DataContracts.External.Api.Lists.Events.NoteEditionDataContract |
None. |
Response Formats
application/json, text/json
Sample:
{ "EditionHistory": [ { "Id": 1, "CreatedBy": "sample string 2", "Description": "sample string 3", "CreatedDate": "2024-11-21T09:56:54.7076105Z", "EditedVersionId": 5, "Pinned": true }, { "Id": 1, "CreatedBy": "sample string 2", "Description": "sample string 3", "CreatedDate": "2024-11-21T09:56:54.7076105Z", "EditedVersionId": 5, "Pinned": true } ] }