GET api/entity1098corrections/{taxProfileId}/{year}

Get entities that need to be corrected

Request Information

URI Parameters

NameDescriptionTypeAdditional information
taxProfileId

integer

Required

year

Year must be current year or last year

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Entity1098CorrectionModel
NameDescriptionTypeAdditional information
Id

integer

None.

SuperEntityId

integer

None.

EntityName

string

None.

TaxId

string

None.

EntityNumber

string

None.

ParameterIds

Collection of integer

None.

CorrectedResidentsCount

integer

None.

RealEstateTaxes

decimal number

None.

MortgageInterest

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "superEntityId": 1,
    "entityName": "sample string 2",
    "taxId": "sample string 3",
    "entityNumber": "sample string 4",
    "parameterIds": [
      1,
      2
    ],
    "correctedResidentsCount": 5,
    "realEstateTaxes": 6.0,
    "mortgageInterest": 7.0
  },
  {
    "id": 1,
    "superEntityId": 1,
    "entityName": "sample string 2",
    "taxId": "sample string 3",
    "entityNumber": "sample string 4",
    "parameterIds": [
      1,
      2
    ],
    "correctedResidentsCount": 5,
    "realEstateTaxes": 6.0,
    "mortgageInterest": 7.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfEntity1098CorrectionModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.Core.Models.IRS.Corrections">
  <Entity1098CorrectionModel>
    <CorrectedResidentsCount>5</CorrectedResidentsCount>
    <EntityName>sample string 2</EntityName>
    <EntityNumber>sample string 4</EntityNumber>
    <Id>1</Id>
    <MortgageInterest>7</MortgageInterest>
    <ParameterIds xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:int>1</d3p1:int>
      <d3p1:int>2</d3p1:int>
    </ParameterIds>
    <RealEstateTaxes>6</RealEstateTaxes>
    <SuperEntityId>1</SuperEntityId>
    <TaxId>sample string 3</TaxId>
  </Entity1098CorrectionModel>
  <Entity1098CorrectionModel>
    <CorrectedResidentsCount>5</CorrectedResidentsCount>
    <EntityName>sample string 2</EntityName>
    <EntityNumber>sample string 4</EntityNumber>
    <Id>1</Id>
    <MortgageInterest>7</MortgageInterest>
    <ParameterIds xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:int>1</d3p1:int>
      <d3p1:int>2</d3p1:int>
    </ParameterIds>
    <RealEstateTaxes>6</RealEstateTaxes>
    <SuperEntityId>1</SuperEntityId>
    <TaxId>sample string 3</TaxId>
  </Entity1098CorrectionModel>
</ArrayOfEntity1098CorrectionModel>