GET Notes/GetLegacyNote?studyIuid={studyIuid}&userLogin={userLogin}

Gets the Legacy Note from the db.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
studyIuid

Study Iuid

string

Required

userLogin

The Current User Login

string

Required

Body Parameters

None.

Response Information

Resource Description

LegacyNote
NameDescriptionTypeAdditional information
CurrentUserInfo

Current User Info

string

None.

NotesHtml

The notes in Legacy Html Format.

string

None.

Response Formats

application/json, text/json

Sample:
{
  "CurrentUserInfo": "sample string 1",
  "NotesHtml": "sample string 2"
}

application/xml, text/xml

Sample:
<LegacyNote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fujifilm.Synapse.Workflow.Engine.Models.Notes">
  <CurrentUserInfo>sample string 1</CurrentUserInfo>
  <NotesHtml>sample string 2</NotesHtml>
</LegacyNote>