GET api/irs1099exports/search?Year={Year}&TaxProfileId={TaxProfileId}

Get entities ready to export for the tax year

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Year

Year for the export

integer

Range: inclusive between 0 and 2147483647

TaxProfileId

Tax Profile Id

integer

Range: inclusive between 0 and 2147483647

Body Parameters

None.

Response Information

Resource Description

Collection of Entity1099ExportViewModel
NameDescriptionTypeAdditional information
ProcessedEntityId

Processed Entity ID

integer

None.

EntityName

EntityName

string

None.

TaxId

Federal Tax Id

string

None.

EntityNumber

Entity Number

string

None.

OtherGroupedEntityIds

List of entities under the same federal tax id

Collection of integer

None.

PaymentTotal

Total amount associated to the entities vendors

decimal number

None.

ItemCount

Total 1099's included in the future export

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "processedEntityId": 1,
    "entityName": "sample string 2",
    "taxId": "sample string 3",
    "entityNumber": "sample string 4",
    "otherGroupedEntityIds": [
      1,
      2
    ],
    "paymentTotal": 5.0,
    "itemCount": 6
  },
  {
    "processedEntityId": 1,
    "entityName": "sample string 2",
    "taxId": "sample string 3",
    "entityNumber": "sample string 4",
    "otherGroupedEntityIds": [
      1,
      2
    ],
    "paymentTotal": 5.0,
    "itemCount": 6
  }
]

application/xml, text/xml

Sample:
<ArrayOfEntity1099ExportViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels">
  <Entity1099ExportViewModel>
    <EntityName>sample string 2</EntityName>
    <EntityNumber>sample string 4</EntityNumber>
    <ItemCount>6</ItemCount>
    <OtherGroupedEntityIds xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:int>1</d3p1:int>
      <d3p1:int>2</d3p1:int>
    </OtherGroupedEntityIds>
    <PaymentTotal>5</PaymentTotal>
    <ProcessedEntityId>1</ProcessedEntityId>
    <TaxId>sample string 3</TaxId>
  </Entity1099ExportViewModel>
  <Entity1099ExportViewModel>
    <EntityName>sample string 2</EntityName>
    <EntityNumber>sample string 4</EntityNumber>
    <ItemCount>6</ItemCount>
    <OtherGroupedEntityIds xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:int>1</d3p1:int>
      <d3p1:int>2</d3p1:int>
    </OtherGroupedEntityIds>
    <PaymentTotal>5</PaymentTotal>
    <ProcessedEntityId>1</ProcessedEntityId>
    <TaxId>sample string 3</TaxId>
  </Entity1099ExportViewModel>
</ArrayOfEntity1099ExportViewModel>