POST api/Notes/UpdateNotesData?domainId={domainId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
domainId

string

Required

Body Parameters

Notes
NameDescriptionTypeAdditional information
NotesID

integer

None.

NotesDescription

string

None.

NotesDescriptionHtml

string

None.

UserName

string

None.

NotesDate

string

None.

NotesType

string

None.

NotesTypeID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "NotesID": 1,
  "NotesDescription": "sample string 2",
  "NotesDescriptionHtml": "sample string 3",
  "UserName": "sample string 4",
  "NotesDate": "sample string 5",
  "NotesType": "sample string 6",
  "NotesTypeID": 7
}

text/html

Sample:
{"NotesID":1,"NotesDescription":"sample string 2","NotesDescriptionHtml":"sample string 3","UserName":"sample string 4","NotesDate":"sample string 5","NotesType":"sample string 6","NotesTypeID":7}

application/xml, text/xml

Sample:
<Notes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ATLAS_Business.Entities.Common">
  <NotesDate>sample string 5</NotesDate>
  <NotesDescription>sample string 2</NotesDescription>
  <NotesDescriptionHtml>sample string 3</NotesDescriptionHtml>
  <NotesID>1</NotesID>
  <NotesType>sample string 6</NotesType>
  <NotesTypeID>7</NotesTypeID>
  <UserName>sample string 4</UserName>
</Notes>

multipart/form-data

Sample:
<Notes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ATLAS_Business.Entities.Common"><NotesDate>sample string 5</NotesDate><NotesDescription>sample string 2</NotesDescription><NotesDescriptionHtml>sample string 3</NotesDescriptionHtml><NotesID>1</NotesID><NotesType>sample string 6</NotesType><NotesTypeID>7</NotesTypeID><UserName>sample string 4</UserName></Notes>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseData
NameDescriptionTypeAdditional information
MessageCode

string

None.

MessageText

string

None.

MessageType

EnumMessageType

None.

HasException

boolean

None.

Exception

string

None.

Data

Collection of Object

None.

Response Formats

application/json, text/json

Sample:
{
  "MessageCode": "sample string 1",
  "MessageText": "sample string 2",
  "MessageType": 1,
  "HasException": true,
  "Exception": "sample string 4",
  "Data": [
    {},
    {}
  ]
}

text/html

Sample:
{"MessageCode":"sample string 1","MessageText":"sample string 2","MessageType":1,"HasException":true,"Exception":"sample string 4","Data":[{},{}]}

application/xml, text/xml

Sample:
<ResponseData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ATLAS_Business.Entities.Common">
  <Data xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:anyType />
    <d2p1:anyType />
  </Data>
  <Exception>sample string 4</Exception>
  <HasException>true</HasException>
  <MessageCode>sample string 1</MessageCode>
  <MessageText>sample string 2</MessageText>
  <MessageType>OPERATION_SUCCESS</MessageType>
</ResponseData>

multipart/form-data

Sample:
<ResponseData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ATLAS_Business.Entities.Common"><Data xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"><d2p1:anyType /><d2p1:anyType /></Data><Exception>sample string 4</Exception><HasException>true</HasException><MessageCode>sample string 1</MessageCode><MessageText>sample string 2</MessageText><MessageType>OPERATION_SUCCESS</MessageType></ResponseData>