POST api/Account/{accountNumber}/InsertNote

Inserts a note onto an account

Request Information

URI Parameters

NameDescriptionTypeAdditional information
accountNumber

The account number

string

Required

Body Parameters

The note object

NoteDto
NameDescriptionTypeAdditional information
Note

The note

string

None.

TypeCode

The type of note

string

None.

User

The user who entered the note. If blank, the current user is used

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Note": "sample string 1",
  "TypeCode": "sample string 2",
  "User": "sample string 3"
}

application/xml, text/xml

Sample:
<NoteDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RestAPI.Models">
  <Note>sample string 1</Note>
  <TypeCode>sample string 2</TypeCode>
  <User>sample string 3</User>
</NoteDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

A boolean indicating success

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.