POST api/Irs1099HistoryNotes

Add Notes in History Table

Request Information

URI Parameters

None.

Body Parameters

Vendor1099HistoryNotePOSTViewModel
NameDescriptionTypeAdditional information
Vendor1099Id

Vendor1099Id

integer

Required

Range: inclusive between 1 and 1.79769313486232E+308

NoteType

NoteType

integer

Required

Range: inclusive between 1 and 1.79769313486232E+308

Note

Note

string

Required

Request Formats

application/json, text/json

Sample:
{
  "vendor1099Id": 1,
  "noteType": 1,
  "note": "sample string 1"
}

application/xml, text/xml

Sample:
<Vendor1099HistoryNotePOSTViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.Controllers.TAX.Models">
  <Note>sample string 1</Note>
  <NoteType>1</NoteType>
  <Vendor1099Id>1</Vendor1099Id>
</Vendor1099HistoryNotePOSTViewModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'Vendor1099HistoryNotePOSTViewModel'.

Response Information

Resource Description

Collection of string

Response Formats

application/json, text/json

Sample:
[
  "sample string 1",
  "sample string 2"
]

application/xml, text/xml

Sample:
<ArrayOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <string>sample string 1</string>
  <string>sample string 2</string>
</ArrayOfstring>