GET api/Irs1099s/{vendor1099Id}/Irs1099HistoryNotes

Retrieve notes per vendor

Request Information

URI Parameters

NameDescriptionTypeAdditional information
vendor1099Id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Vendor1099HistoryNoteViewModel
NameDescriptionTypeAdditional information
Vendor1099Id

Vendor1099Id

integer

None.

NoteType

NoteType

integer

None.

NoteTypeName

NoteTypeName

integer

None.

Note

Note

string

None.

CreatedOn

User Name

date

Required

UserName

User Name

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "vendor1099Id": 1,
    "noteType": 2,
    "noteTypeName": 3,
    "note": "sample string 4",
    "createdOn": "2024-10-14T08:22:37.3906775-04:00",
    "userName": "sample string 6"
  },
  {
    "vendor1099Id": 1,
    "noteType": 2,
    "noteTypeName": 3,
    "note": "sample string 4",
    "createdOn": "2024-10-14T08:22:37.3906775-04:00",
    "userName": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfVendor1099HistoryNoteViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.Controllers.TAX.Models">
  <Vendor1099HistoryNoteViewModel>
    <CreatedOn>2024-10-14T08:22:37.3906775-04:00</CreatedOn>
    <Note>sample string 4</Note>
    <NoteType>2</NoteType>
    <NoteTypeName>3</NoteTypeName>
    <UserName>sample string 6</UserName>
    <Vendor1099Id>1</Vendor1099Id>
  </Vendor1099HistoryNoteViewModel>
  <Vendor1099HistoryNoteViewModel>
    <CreatedOn>2024-10-14T08:22:37.3906775-04:00</CreatedOn>
    <Note>sample string 4</Note>
    <NoteType>2</NoteType>
    <NoteTypeName>3</NoteTypeName>
    <UserName>sample string 6</UserName>
    <Vendor1099Id>1</Vendor1099Id>
  </Vendor1099HistoryNoteViewModel>
</ArrayOfVendor1099HistoryNoteViewModel>