GET api/WorkflowEngine/Notes/GetLegacyNote?studyIuid={studyIuid}&userLogin={userLogin}&dataSource={dataSource}

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

dataSource

string

None.

Body Parameters

None.

Response Information

Resource Description

LegacyNote
NameDescriptionTypeAdditional information
CurrentUserInfo

string

None.

NotesHtml

string

None.

Response Formats

application/json, text/json

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

application/octet-stream

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>