GET api/event/noteevent/noteeditionschain/{originalNoteId}

Get the chain of editions for a given original edited note.

Request Information

URI Parameters

NameDescriptionTypeAdditional 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.NoteEditionsChainDataContract
NameDescriptionTypeAdditional 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-04-19T20:07:01.6085941Z",
      "EditedVersionId": 5,
      "Pinned": true
    },
    {
      "Id": 1,
      "CreatedBy": "sample string 2",
      "Description": "sample string 3",
      "CreatedDate": "2024-04-19T20:07:01.6085941Z",
      "EditedVersionId": 5,
      "Pinned": true
    }
  ]
}